dsf
Dependencies: BLE_API mbed nRF51822
ControllerParams.hpp@0:b5906c81772b, 2017-02-05 (annotated)
- Committer:
- stoicancristi
- Date:
- Sun Feb 05 16:31:58 2017 +0000
- Revision:
- 0:b5906c81772b
BLE
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
stoicancristi | 0:b5906c81772b | 1 | |
stoicancristi | 0:b5906c81772b | 2 | #ifndef CONTROLLERPARAMS_H |
stoicancristi | 0:b5906c81772b | 3 | #define CONTROLLERPARAMS_H |
stoicancristi | 0:b5906c81772b | 4 | |
stoicancristi | 0:b5906c81772b | 5 | typedef struct{ |
stoicancristi | 0:b5906c81772b | 6 | |
stoicancristi | 0:b5906c81772b | 7 | float kp; |
stoicancristi | 0:b5906c81772b | 8 | float ti; |
stoicancristi | 0:b5906c81772b | 9 | float td; |
stoicancristi | 0:b5906c81772b | 10 | |
stoicancristi | 0:b5906c81772b | 11 | float *R; |
stoicancristi | 0:b5906c81772b | 12 | float *S; |
stoicancristi | 0:b5906c81772b | 13 | float *T; |
stoicancristi | 0:b5906c81772b | 14 | |
stoicancristi | 0:b5906c81772b | 15 | int ordR; |
stoicancristi | 0:b5906c81772b | 16 | int ordS; |
stoicancristi | 0:b5906c81772b | 17 | int ordT; |
stoicancristi | 0:b5906c81772b | 18 | |
stoicancristi | 0:b5906c81772b | 19 | static const int MAX_ORD = 10; |
stoicancristi | 0:b5906c81772b | 20 | |
stoicancristi | 0:b5906c81772b | 21 | }ControllerParams; |
stoicancristi | 0:b5906c81772b | 22 | |
stoicancristi | 0:b5906c81772b | 23 | #endif |