add lora lowpower at command support

add lora lowpower at command support
This commit is contained in:
supowang
2019-12-18 13:01:35 +08:00
parent d0f61b43a5
commit e1c19fd194
8 changed files with 86 additions and 104 deletions

View File

@@ -11,16 +11,18 @@ static void led_config(void)
gpio_bit_set(LED_GPIO_PORT, LED_PIN);
}
void board_init() {
void board_init()
{
char *str = "Tencent";
SystemInit();
led_config();
uart3_init(115200);
usart0_init(115200);
usart1_init(115200);
usart2_init(115200);
OLED_Init();
OLED_Clear();
OLED_ShowChinese(36,0,0);
OLED_ShowChinese(54,0,1);
OLED_ShowChinese(72,0,2);
OLED_ShowString(36,2,(uint8_t*)str,8);
}