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: mbed ros_lib_kinetic
interrupts.cpp@0:3a767f41cf04, 2018-01-31 (annotated)
- Committer:
- group-UVic-Assistive-Technolog
- Date:
- Wed Jan 31 05:24:12 2018 +0000
- Revision:
- 0:3a767f41cf04
- Child:
- 1:1ac7d472cfa2
Initial commit
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 1 | |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 2 | #include <definitions.h> |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 3 | |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 4 | void hallInterrupt(){ |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 5 | |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 6 | liftFlag = 1; |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 7 | } |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 8 | |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 9 | void motorInterrupt(){ |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 10 | |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 11 | motorFlag = 1; |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 12 | } |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 13 | |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 14 | void imuInterrupt(){ |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 15 | |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 16 | imuFlag = 1; |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 17 | } |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 18 | |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 19 | void rosInterrupt(){ |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 20 | |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 21 | rosFlag = 1; |
| group-UVic-Assistive-Technolog | 0:3a767f41cf04 | 22 | } |