Dependencies: HardwareInterface mbed-rtos mbed
Fork of NerfUS by
source/Target.cpp@19:33e8cd56630f, 2017-03-30 (annotated)
- Committer:
- Ismael Balafrej
- Date:
- Thu Mar 30 13:40:36 2017 -0400
- Branch:
- PlayableGame
- Revision:
- 19:33e8cd56630f
- Parent:
- 16:5e6c695468b6
W/e
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Maxime Dupuis |
16:5e6c695468b6 | 1 | #include "Target.hpp" |
Maxime Dupuis |
16:5e6c695468b6 | 2 | |
Maxime Dupuis |
16:5e6c695468b6 | 3 | TargetInfo make_TargetInfo(const int id, const TargetType type, int timeout_ms) |
Maxime Dupuis |
16:5e6c695468b6 | 4 | { |
Maxime Dupuis |
16:5e6c695468b6 | 5 | TargetInfo target = {id, type, timeout_ms}; |
Maxime Dupuis |
16:5e6c695468b6 | 6 | return target; |
Maxime Dupuis |
16:5e6c695468b6 | 7 | } |
Maxime Dupuis |
16:5e6c695468b6 | 8 |