mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
100 lines
2.0 KiB
C
100 lines
2.0 KiB
C
/*
|
|
* Copyright (C) 2018 Gunar Schorcht
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @ingroup boards_common_esp8266
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Definitions for all esp8266 board.
|
|
*
|
|
* @author Gunar Schorcht <gunar@schorcht.net>
|
|
*/
|
|
|
|
#include "board.h"
|
|
#include "esp_common.h"
|
|
#include "log.h"
|
|
#include "periph/gpio.h"
|
|
#include "esp_libc.h"
|
|
#include "rom/ets_sys.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void adc_print_config(void);
|
|
extern void dac_print_config(void);
|
|
extern void pwm_print_config(void);
|
|
extern void i2c_print_config(void);
|
|
extern void spi_print_config(void);
|
|
extern void uart_print_config(void);
|
|
extern void timer_print_config(void);
|
|
extern void can_print_config(void);
|
|
|
|
void board_print_config (void)
|
|
{
|
|
ets_printf("\nBoard configuration:\n");
|
|
|
|
#if MODULE_PERIPH_ADC
|
|
adc_print_config();
|
|
#endif
|
|
#if MODULE_PERIPH_DAC
|
|
dac_print_config();
|
|
#endif
|
|
#if MODULE_PERIPH_PWM
|
|
pwm_print_config();
|
|
#endif
|
|
#if MODULE_PERIPH_I2C
|
|
i2c_print_config();
|
|
#endif
|
|
#if MODULE_PERIPH_SPI
|
|
spi_print_config();
|
|
#endif
|
|
#if MODULE_PERIPH_UART
|
|
uart_print_config();
|
|
#endif
|
|
#if MODULE_PERIPH_TIMER
|
|
timer_print_config();
|
|
#endif
|
|
#ifdef MODULE_ESP_CAN
|
|
can_print_config();
|
|
#endif
|
|
|
|
ets_printf("\tLED\t\tpins=[ ");
|
|
#ifdef LED0_PIN
|
|
ets_printf("%d ", LED0_PIN);
|
|
#endif
|
|
#ifdef LED1_PIN
|
|
ets_printf("%d ", LED1_PIN);
|
|
#endif
|
|
#ifdef LED2_PIN
|
|
ets_printf("%d ", LED2_PIN);
|
|
#endif
|
|
ets_printf("]\n");
|
|
|
|
ets_printf("\tBUTTON\t\tpins=[ ");
|
|
#ifdef BUTTON0_PIN
|
|
ets_printf("%d ", BUTTON0_PIN);
|
|
#endif
|
|
#ifdef BUTTON2_PIN
|
|
ets_printf("%d ", BUTTON1_PIN);
|
|
#endif
|
|
#ifdef BUTTON3_PIN
|
|
ets_printf("%d ", BUTTON2_PIN);
|
|
#endif
|
|
ets_printf("]\n");
|
|
|
|
ets_printf("\n");
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
} /* end extern "C" */
|
|
#endif
|
|
|
|
/** @} */
|