blob: a92084718063f1b4460000fc6e57aa53f5717c39 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef H__SPIN_
#define H__SPIN_
#include <stdint.h>
/*
* Flash a code on the status LED.
*
* The flash codes a binary from MSB to LSB. A long flash is a 1, a short flash
* is a 0. Each independent flashing is succeced by a break of 4 times that
* of a long flash.
*/
void spin(uint8_t code);
#endif /* H__SPIN_ */
|