goodwatch/firmware
2017-11-30 11:30:53 -05:00
..
apps Cleaner bargraph, cached result of radio_getfreq(). #49 2017-11-30 11:30:53 -05:00
libs Full alphabet in the Morse library. #46 2017-11-28 18:28:14 -05:00
.gitignore Full alphabet in the Morse library. #46 2017-11-28 18:28:14 -05:00
api.h Full alphabet in the Morse library. #46 2017-11-28 18:28:14 -05:00
applist.h RSSI app works, so long as you pass through Morse first. I don't know why. #49 2017-11-29 20:20:06 -05:00
apps.c RSSI app works, so long as you pass through Morse first. I don't know why. #49 2017-11-29 20:20:06 -05:00
apps.h Remaining doxygen headers and Doxyfile. Close #39. 2017-11-14 14:07:10 -05:00
configdefault.h RSSI app works, so long as you pass through Morse first. I don't know why. #49 2017-11-29 20:20:06 -05:00
configtemplate.h RF power is now configurable. 2017-11-29 11:27:28 -05:00
configure Configuration script and template. 2017-11-28 18:29:52 -05:00
dmesg.c Logging adjustment. 2017-11-18 15:05:15 -05:00
dmesg.h DMESG properly initialized. #45 2017-11-18 12:46:03 -05:00
Doxyfile Remaining doxygen headers and Doxyfile. Close #39. 2017-11-14 14:07:10 -05:00
keypad.c Remaining doxygen headers and Doxyfile. Close #39. 2017-11-14 14:07:10 -05:00
keypad.h Remaining doxygen headers and Doxyfile. Close #39. 2017-11-14 14:07:10 -05:00
lcd.c Cleanup of the RF1A library. No longer displays useless errors. #44 2017-11-19 14:13:52 -05:00
lcd.h Remaining doxygen headers and Doxyfile. Close #39. 2017-11-14 14:07:10 -05:00
lcdtext.c Shows RTCDOW when holding '9' in the clock app. #43 2017-11-15 21:33:13 -05:00
lcdtext.h Shows RTCDOW when holding '9' in the clock app. #43 2017-11-15 21:33:13 -05:00
main.c Fixes bug where app_init() was not called for the first application. 2017-11-29 21:33:45 -05:00
Makefile RSSI app works, so long as you pass through Morse first. I don't know why. #49 2017-11-29 20:20:06 -05:00
memory.x Dmesg can now be dumped by 'make dmesg'. Close #45. 2017-11-18 14:56:46 -05:00
msp430.x Imported linker scripts, so we can force dmesg to a static address. #45 2017-11-18 14:29:58 -05:00
periph.x Imported linker scripts, so we can force dmesg to a static address. #45 2017-11-18 14:29:58 -05:00
power.c Proper power management for the radio. #46 #44 2017-11-28 17:24:10 -05:00
power.h Power management and basics of the radio toward #44. 2017-11-16 12:53:12 -05:00
radio.c Cleaner bargraph, cached result of radio_getfreq(). #49 2017-11-30 11:30:53 -05:00
radio.h RSSI app works, so long as you pass through Morse first. I don't know why. #49 2017-11-29 20:20:06 -05:00
README.md README for the firmware directory. 2017-09-29 15:39:05 -04:00
rtc.c Inlucde stdio to remove error. 2017-11-28 19:48:54 -05:00
rtc.h Workaround for the RTC3 errata. Close #47. 2017-11-28 12:54:30 -05:00
rtcasm.h Workaround for the RTC3 errata. Close #47. 2017-11-28 12:54:30 -05:00
rtcasm.S Restores alignment to rtcasm.S. I think this closes #47, but I've thought that before. 2017-11-28 19:00:47 -05:00
sidebutton.c Remaining doxygen headers and Doxyfile. Close #39. 2017-11-14 14:07:10 -05:00
sidebutton.h Remaining doxygen headers and Doxyfile. Close #39. 2017-11-14 14:07:10 -05:00

Howdy y'all,

The GoodWatch firmware is in this directory. You will find user-level applications in the apps/ subdirectory, while *.c in the root directory contain low-level drivers.

To add your own application, for one of the smaller examples, such as stopwatch.c. Your app must provide functions for _init() (to run at startup), _draw() (to run every quarter-second for rendering), and _exit() which should just return 0 unless you need to intercept the Mode button, in which case it may return 1 to delay the exit. Add these three functions to a line of the apps[] structure in applist.h.

In general, we try not to over-abstract the hardware because we don't intend the design to be portable away from the CC430. Include <msp430.h> if you need to access the CC430's IO registers or "api.h" for all the standard functions of the GoodWatch firmware.

Cheers,

--Travis