board.h File Reference

Support for the WeAct-F411CE Board. More...

Detailed Description

Support for the WeAct-F411CE Board.

Pin definitions and board configuration options

Author
Benjamin Valentin benpi.nosp@m.cco@.nosp@m.googl.nosp@m.emai.nosp@m.l.com

Definition in file board.h.

#include "mtd.h"
#include "periph_cpu.h"
+ Include dependency graph for board.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void board_init (void)
 Initialize board specific hardware, including clock, LEDs and std-IO.
 

Xtimer configuration

#define XTIMER_BACKOFF   (8)
 
#define XTIMER_OVERHEAD   (6)
 
#define INTERNAL_PERIPHERAL_VID   (0x0483)
 Product & Vendor ID taken from example firmware that the board was shipped with.
 
#define INTERNAL_PERIPHERAL_PID   (0x5740)
 

LED pin definition and handlers

#define LED0_PORT   GPIOC
 
#define LED0_PIN   GPIO_PIN(PORT_C, 13)
 
#define LED0_MASK   (1 << 13)
 
#define LED0_ON   (LED0_PORT->BSRR = (LED0_MASK << 16))
 
#define LED0_OFF   (LED0_PORT->BSRR = (LED0_MASK << 0))
 
#define LED0_TOGGLE   (LED0_PORT->ODR ^= LED0_MASK)
 

User button pin definition

#define BTN0_PIN   GPIO_PIN(PORT_A, 0)
 
#define BTN0_MODE   GPIO_IN_PU
 

WeAct-F411CE NOR flash hardware configuration

  The pad for the NOR Flash (U3) is not populated.
  You have to solder a serial flash yourself and adjust the parameters.
#define WEACT_411CE_NOR_PAGE_SIZE   (256)
 
#define WEACT_411CE_NOR_PAGES_PER_SECTOR   (16)
 
#define WEACT_411CE_NOR_FLAGS   (SPI_NOR_F_SECT_4K | SPI_NOR_F_SECT_32K)
 
#define WEACT_411CE_NOR_SPI_DEV   SPI_DEV(0)
 
#define WEACT_411CE_NOR_SPI_CLK   SPI_CLK_10MHZ
 
#define WEACT_411CE_NOR_SPI_CS   GPIO_PIN(PORT_A, 4)
 
#define WEACT_411CE_NOR_SPI_MODE   SPI_MODE_0
 

MTD configuration

#define MTD_0   mtd0
 
mtd_dev_tmtd0