aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/freertos-blinky.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/examples/freertos-blinky.cpp b/examples/freertos-blinky.cpp
index acdfc0f..6f82d71 100755
--- a/examples/freertos-blinky.cpp
+++ b/examples/freertos-blinky.cpp
@@ -1,8 +1,8 @@
#include "wirish.h"
#include "libraries/FreeRTOS/MapleFreeRTOS.h"
-static void vLEDFlashTask( void *pvParameters ) {
- for(;;) {
+static void vLEDFlashTask(void *pvParameters) {
+ for (;;) {
vTaskDelay(1000);
digitalWrite(BOARD_LED_PIN, HIGH);
vTaskDelay(50);
@@ -14,7 +14,12 @@ void setup() {
// initialize the digital pin as an output:
pinMode(BOARD_LED_PIN, OUTPUT);
- xTaskCreate( vLEDFlashTask, ( signed portCHAR * ) "Task1", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY + 2, NULL );
+ xTaskCreate(vLEDFlashTask,
+ (signed portCHAR *)"Task1",
+ configMINIMAL_STACK_SIZE,
+ NULL,
+ tskIDLE_PRIORITY + 2,
+ NULL);
vTaskStartScheduler();
}