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.
Dependencies: MPU6050_SIM5320_TEST
CaseFSM/PhoneUndetected.cpp@0:79959cf2cc3e, 2017-11-09 (annotated)
- Committer:
- suads
- Date:
- Thu Nov 09 15:00:04 2017 +0000
- Revision:
- 0:79959cf2cc3e
commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
suads | 0:79959cf2cc3e | 1 | #include <PhoneUndetected.h> |
suads | 0:79959cf2cc3e | 2 | #include <DeviceEmpty.h> |
suads | 0:79959cf2cc3e | 3 | #include <CaseEvents.h> |
suads | 0:79959cf2cc3e | 4 | #include <CaseFsm.h> |
suads | 0:79959cf2cc3e | 5 | |
suads | 0:79959cf2cc3e | 6 | PhoneUndetected::PhoneUndetected(CaseFsmStates& states, Timer& timer): CaseState(states,timer) {} |
suads | 0:79959cf2cc3e | 7 | |
suads | 0:79959cf2cc3e | 8 | CaseState* PhoneUndetected::handle(SwitchPosition& event) |
suads | 0:79959cf2cc3e | 9 | { |
suads | 0:79959cf2cc3e | 10 | |
suads | 0:79959cf2cc3e | 11 | printf("Odoh u DEVICE EMPTY STATE\r\n"); |
suads | 0:79959cf2cc3e | 12 | return states_.deviceEmptyState(); |
suads | 0:79959cf2cc3e | 13 | } |
suads | 0:79959cf2cc3e | 14 | |
suads | 0:79959cf2cc3e | 15 | |
suads | 0:79959cf2cc3e | 16 |