Files

copied
Last update 8 years 4 months
Files
tests
.gitignore
.travis.yml
Makefile
README.md
button_fsm.c
button_fsm.h
hall_fsm.c
hall_fsm.h
light-control.brd
light-control.sch
main.c
messages.c
messages.h
port.c
port.h
room_fsm.c
room_fsm.h
timers.c
timers.h
port.h
#ifndef _port_h #define _port_h #include <stdint.h> typedef struct { volatile uint8_t *port; uint8_t bit; } Port; void Port_Set(Port *port); void Port_Clear(Port *port); #endif
Report a bug