Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of priustroller_current by
callbacks.h@45:a478506acc92, 2015-04-16 (annotated)
- Committer:
- bwang
- Date:
- Thu Apr 16 23:20:24 2015 +0000
- Revision:
- 45:a478506acc92
- Parent:
- 42:e4f35ff78d91
- Child:
- 49:0603121a0538
fixed syntax errors
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
bwang | 11:dccbaa9274c5 | 1 | #ifndef __CALLBACKS_H |
bwang | 11:dccbaa9274c5 | 2 | #define __CALLBACKS_H |
bwang | 11:dccbaa9274c5 | 3 | |
bwang | 11:dccbaa9274c5 | 4 | #include "context.h" |
bwang | 11:dccbaa9274c5 | 5 | |
bwang | 11:dccbaa9274c5 | 6 | void fast(Context *c); |
bwang | 38:232c51b6853f | 7 | void fast_test(Context *c); |
bwang | 45:a478506acc92 | 8 | void fast_test2(Context *c); |
bwang | 11:dccbaa9274c5 | 9 | void slow(Context *c); |
bwang | 11:dccbaa9274c5 | 10 | void debug(Context *c); |
bwang | 24:f1ff9c7256b5 | 11 | void log(Context *c); |
bwang | 11:dccbaa9274c5 | 12 | |
bwang | 11:dccbaa9274c5 | 13 | #endif |