2018-11-29 17:00:22 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
2019-01-22 10:00:45 +08:00
|
|
|
* 2018-11-27 balanceTWK first version
|
2018-11-29 17:00:22 +08:00
|
|
|
*/
|
2018-11-30 18:29:37 +08:00
|
|
|
|
2018-11-29 17:00:22 +08:00
|
|
|
#include <rtthread.h>
|
|
|
|
#include <rtdevice.h>
|
|
|
|
#include <board.h>
|
2019-01-22 09:14:06 +08:00
|
|
|
|
2018-12-20 14:53:46 +08:00
|
|
|
/* defined the LED0 pin: PC0 */
|
|
|
|
#define LED0_PIN GET_PIN(C, 0)
|
2018-11-29 17:00:22 +08:00
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
2018-12-03 13:50:49 +08:00
|
|
|
int count = 1;
|
2018-12-20 14:53:46 +08:00
|
|
|
/* set LED0 pin mode to output */
|
|
|
|
rt_pin_mode(LED0_PIN, PIN_MODE_OUTPUT);
|
|
|
|
|
2018-12-03 13:50:49 +08:00
|
|
|
while (count++)
|
2018-11-29 17:00:22 +08:00
|
|
|
{
|
2018-12-20 14:53:46 +08:00
|
|
|
rt_pin_write(LED0_PIN, PIN_HIGH);
|
|
|
|
rt_thread_mdelay(500);
|
|
|
|
rt_pin_write(LED0_PIN, PIN_LOW);
|
2018-11-29 17:00:22 +08:00
|
|
|
rt_thread_mdelay(500);
|
|
|
|
}
|
2018-12-20 14:53:46 +08:00
|
|
|
|
2018-12-03 13:50:49 +08:00
|
|
|
return RT_EOK;
|
2018-11-29 17:00:22 +08:00
|
|
|
}
|