12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #pragma once
- #define BASE_FREQ 100000000
- #define UART_BASE 0x81000000
- #define SPI_BASE 0x82000000
- #define LED_BASE 0x83000000
- #define MAILBOX_REGS_BASE 0x84000000
- #define MAILBOX_BUTTONS_BASE 0x85000000
- #define SUPPORT_ODD_PULSE_TRAIN
- #if defined(SUPPORT_ODD_PULSE_TRAIN)
- #define N_PULSE_TRAINS 2
- #else
- #define N_PULSE_TRAINS 1
- #endif
- #define USE_KEYBOARD (1)
|