esp32c3: Some cosmetics and style fixes.

Signed-off-by: Abdelatif Guettouche <abdelatif.guettouche@espressif.com>
This commit is contained in:
Abdelatif Guettouche 2021-02-18 13:49:43 +01:00 committed by Matias N
parent 10822799fb
commit 067da56d0c
5 changed files with 152 additions and 154 deletions

View File

@ -184,7 +184,6 @@ void esp32c3_gpioirqinitialize(void);
# define esp32c3_gpioirqinitialize()
#endif
/****************************************************************************
* Name: esp32c3_gpioirqenable
*

View File

@ -33,9 +33,9 @@
#define GPIO_REG(io_num) (GPIO_PIN0_REG + ((io_num) * 0x4))
#define GPIO_PIN_INT_ENA 0x0000001F
#define GPIO_PIN_INT_ENA 0x0000001f
#define GPIO_PIN_INT_ENA_M ((GPIO_PIN_INT_ENA_V)<<(GPIO_PIN_INT_ENA_S))
#define GPIO_PIN_INT_ENA_V 0x0000001F
#define GPIO_PIN_INT_ENA_V 0x0000001f
#define GPIO_PIN_INT_ENA_S 13
#define GPIO_PIN_CONFIG 0x00000003

View File

@ -303,7 +303,7 @@
#define FUNC_U0TXD_U0TXD 0
#define IO_MUX_DATE_REG (REG_IO_MUX_BASE + 0xfc)
#define IO_MUX_DATE 0xFFFFFFFF
#define IO_MUX_DATE 0xffffffff
#define IO_MUX_DATE_S 0
#define IO_MUX_DATE_VERSION 0x2006050

View File

@ -71,6 +71,5 @@ int esp32c3_bringup(void);
int esp32c3_gpio_init(void);
#endif
#endif /* __ASSEMBLY__ */
#endif /* __BOARDS_RISCV_ESP32C3_ESP32C3_DEVKIT_SRC_ESP32C3_DEVKIT_H */