15 lines
258 B
C
15 lines
258 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
static constexpr unsigned HALF_LEN = 0x80u;
|
|
static constexpr unsigned MAXPWM = 2000u;
|
|
|
|
#ifdef __riscv
|
|
#define LED_CFG GPIOD,4
|
|
#elif __arm__
|
|
#define LED_CFG GpioPortA,0
|
|
#else
|
|
#error "bad target"
|
|
#endif
|
|
|
|
#endif // CONFIG_H
|