Sha256: 4f428697960439b974123b8e6b375f9e7f6f5977bd90cf62538b999cdf5da77c

Contents?: true

Size: 292 Bytes

Versions: 2

Compression:

Stored size: 292 Bytes

Contents

// #include <stdint.h>

#include "BlinkTask.h"

#ifdef TEST
  #define LOOP 
  #include "stub_io.h"
#else
  #include <avr/interrupt.h>
  #include <avr/io.h>
  #define LOOP while(1)
#endif // TEST



void BlinkTask(void)
{
  /* toggle the LED */
  PORTB ^= _BV(PORTB5);

}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ceedling-0.29.1 examples/blinky/src/BlinkTask.c
ceedling-0.29.0 examples/blinky/src/BlinkTask.c