22 lines
303 B
C
22 lines
303 B
C
|
extern __IO uint16_t ADCVal[2];
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void NVIC_Conf();
|
||
|
|
||
|
void RCC_Conf();
|
||
|
|
||
|
void init_port();
|
||
|
|
||
|
void init_timer(const int rtty_speed);
|
||
|
|
||
|
void init_usart_gps(const uint32_t speed, const uint8_t enable_irq);
|
||
|
|
||
|
void spi_init();
|
||
|
|
||
|
void spi_deinit();
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|