25 lines
420 B
C
Raw Normal View History

2024-07-23 18:05:33 +08:00
#include <rtthread.h>
2024-07-29 11:17:10 +08:00
#include<board.h>
#ifndef RT_USING_NANO
#include <rtdevice.h>
#endif // !RT_USING_NANO
#define GPIO_LED_B GET_PIN(F,11)
#define GPIO_LED_B GET_PIN(F,11)
2024-07-25 22:21:07 +08:00
int main(void)
2024-07-25 00:37:35 +08:00
{
2024-07-29 11:17:10 +08:00
return 0;
2024-07-23 18:05:33 +08:00
}
2024-07-29 11:17:10 +08:00
// #define WIFI_CS GET_PIN(F,10)
// void WIFICS_PULL_DOWN(void)
// {
// rt_pin_mode(WIFI_CS, PIN_MODE_OUTPUT);
// rt_pin_write(WIFI_CS, PIN_LOW);
// }
// INIT_BOARD_EXPORT(WIFI_CS_PULL_DOWN);