123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /*
- * Copyright (c) 2006-2021, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2017-11-8 Tangyuxin first version
- */
- #include <rtthread.h>
- #include <board.h>
- #include <drv_gpio.h>
- void blink_task(void* param)
- {
- rt_uint8_t cnt = 0;
-
- while(1)
- {
- rt_thread_delay(RT_TICK_PER_SECOND / 4);
- if(cnt & 0x01)
- gpio_set_value(BLINK_LED0_PORT,BLINK_LED0_PIN,0);
- else
- gpio_set_value(BLINK_LED0_PORT,BLINK_LED0_PIN,1);
- if(cnt & 0x02)
- gpio_set_value(BLINK_LED1_PORT,BLINK_LED1_PIN,0);
- else
- gpio_set_value(BLINK_LED1_PORT,BLINK_LED1_PIN,1);
- if(cnt & 0x04)
- gpio_set_value(BLINK_LED2_PORT,BLINK_LED2_PIN,0);
- else
- gpio_set_value(BLINK_LED2_PORT,BLINK_LED2_PIN,1);
- if(cnt & 0x08)
- gpio_set_value(BLINK_LED3_PORT,BLINK_LED3_PIN,0);
- else
- gpio_set_value(BLINK_LED3_PORT,BLINK_LED3_PIN,1);
- cnt ++;
- }
- }
- int blink_init(void)
- {
- rt_thread_t tid;
- tid = rt_thread_create("blink",
- blink_task, RT_NULL,
- 512,
- RT_THREAD_PRIORITY_MAX - 2,
- 10);
- if (tid != RT_NULL)
- rt_thread_startup(tid);
- }
- INIT_APP_EXPORT(blink_init);
|