Files

20 lines
341 B
C
Raw Permalink Normal View History

2026-04-26 16:24:42 +08:00
#ifndef __CONFIG_H__
#define __CONFIG_H__
#define DEBUG_ENABLED 1
2026-04-26 16:38:14 +08:00
#define SYSTEM_CLOCK_FREQ 168000000
2026-04-26 16:24:42 +08:00
#define UART_BAUDRATE 9600
#define I2C_SPEED 400000
#define SPI_SPEED 10000000
#define ADC_RESOLUTION 12
#define ADC_REF_VOLTAGE 3.3f
#define FSMC_DATA_WIDTH 16
#define FSMC_ADDRESS_SETUP_TIME 2
#define FSMC_DATA_SETUP_TIME 3
2026-04-26 16:38:14 +08:00
#endif