SmartWheels self-driving race car. Designed for NXP Cup. Uses FRDM-KL25Z, area-scan camera, and simple image processing to detect and navigate any NXP spec track.
Dependencies: TSI USBDevice mbed-dev
Fork of SmartWheels by
GlobalVariable.h@83:b2c7c6f76575, 2017-04-18 (annotated)
- Committer:
- hazheng
- Date:
- Tue Apr 18 21:26:53 2017 +0000
- Branch:
- Drift
- Revision:
- 83:b2c7c6f76575
- Parent:
- 56:7d3395ae022d
- Child:
- 87:15fcf7891bf9
Clean the code a little bit.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
hazheng | 29:f87d8790f57d | 1 | #ifndef GLOBAL_VARIABLE_H |
hazheng | 29:f87d8790f57d | 2 | #define GLOBAL_VARIABLE_H |
hazheng | 29:f87d8790f57d | 3 | |
hazheng | 29:f87d8790f57d | 4 | #include <mbed.h> |
hazheng | 29:f87d8790f57d | 5 | #include "Core.h" |
hazheng | 29:f87d8790f57d | 6 | |
hazheng | 29:f87d8790f57d | 7 | extern SPI g_spi_port; |
hazheng | 29:f87d8790f57d | 8 | extern SW::Core g_core; |
hazheng | 29:f87d8790f57d | 9 | |
hazheng | 29:f87d8790f57d | 10 | #endif //GLOBAL_VARIABLE_H |