amiro-os / devices / DiWheelDrive / main.cpp @ 753ccd04
History | View | Annotate | Download (48.743 KB)
| 1 | 58fe0e0b | Thomas Schöpping | #define BL_CALLBACK_TABLE_ADDR (0x08000000 + 0x01C0) |
|---|---|---|---|
| 2 | #define BL_MAGIC_NUMBER ((uint32_t)0xFF669900u) |
||
| 3 | |||
| 4 | #define SHUTDOWN_NONE 0 |
||
| 5 | #define SHUTDOWN_TRANSPORTATION 1 |
||
| 6 | #define SHUTDOWN_DEEPSLEEP 2 |
||
| 7 | #define SHUTDOWN_HIBERNATE 3 |
||
| 8 | #define SHUTDOWN_RESTART 4 |
||
| 9 | #define SHUTDOWN_HANDLE_REQUEST 5 |
||
| 10 | |||
| 11 | #include <ch.hpp> |
||
| 12 | |||
| 13 | #include <amiro/util/util.h> |
||
| 14 | #include <global.hpp> |
||
| 15 | #include <exti.hpp> |
||
| 16 | |||
| 17 | #include <chprintf.h> |
||
| 18 | #include <shell.h> |
||
| 19 | |||
| 20 | af93a91c | galberding | #include "linefollow2.hpp" |
| 21 | |||
| 22 | 58fe0e0b | Thomas Schöpping | using namespace chibios_rt; |
| 23 | |||
| 24 | Global global; |
||
| 25 | |||
| 26 | 10687985 | Thomas Schöpping | struct blVersion_t {
|
| 27 | const uint8_t identifier;
|
||
| 28 | const uint8_t major;
|
||
| 29 | const uint8_t minor;
|
||
| 30 | const uint8_t patch;
|
||
| 31 | } __attribute__((packed)); |
||
| 32 | |||
| 33 | 58fe0e0b | Thomas Schöpping | void systemShutdown() {
|
| 34 | types::kinematic k; |
||
| 35 | uint8_t i; |
||
| 36 | |||
| 37 | // // make sure we assert SYS_PD_N to delay shutdown until we're done.
|
||
| 38 | // boardRequestShutdown();
|
||
| 39 | |||
| 40 | // stop the user thread
|
||
| 41 | global.userThread.requestTerminate(); |
||
| 42 | global.userThread.wait(); |
||
| 43 | |||
| 44 | k.x = 0x00u;
|
||
| 45 | k.w_z = 0x00u;
|
||
| 46 | |||
| 47 | // stop wheels
|
||
| 48 | global.robot.setTargetSpeed(k); |
||
| 49 | global.robot.terminate(); |
||
| 50 | |||
| 51 | for (i = 0x00; i < global.vcnl4020.size(); i++) { |
||
| 52 | global.vcnl4020[i].requestTerminate(); |
||
| 53 | global.vcnl4020[i].wait(); |
||
| 54 | } |
||
| 55 | |||
| 56 | global.ina219.requestTerminate(); |
||
| 57 | global.ina219.wait(); |
||
| 58 | global.hmc5883l.requestTerminate(); |
||
| 59 | global.hmc5883l.wait(); |
||
| 60 | global.l3g4200d.requestTerminate(); |
||
| 61 | global.l3g4200d.wait(); |
||
| 62 | |||
| 63 | global.motorcontrol.requestTerminate(); |
||
| 64 | global.motorcontrol.wait(); |
||
| 65 | global.odometry.requestTerminate(); |
||
| 66 | global.odometry.wait(); |
||
| 67 | |||
| 68 | // stop I²C
|
||
| 69 | for (i = 0; i < global.V_I2C2.size(); ++i) |
||
| 70 | global.V_I2C2[i].stop(); |
||
| 71 | global.HW_I2C2.stop(); |
||
| 72 | |||
| 73 | global.lis331dlh.requestTerminate(); |
||
| 74 | global.lis331dlh.wait(); |
||
| 75 | |||
| 76 | global.lis331dlh.configure(&global.accel_sleep_config); |
||
| 77 | // global.lis331dlh.start(NORMALPRIO +4);
|
||
| 78 | |||
| 79 | // boardWriteIoPower(0);
|
||
| 80 | // boardStandby();
|
||
| 81 | |||
| 82 | return;
|
||
| 83 | } |
||
| 84 | |||
| 85 | |||
| 86 | //void (*shellcmd_t)(BaseSequentialStream *chp, int argc, char *argv[]);
|
||
| 87 | |||
| 88 | void shellRequestShutdown(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 89 | |||
| 90 | chprintf(chp, "shellRequestShutdown\n");
|
||
| 91 | |||
| 92 | /* if nor argument was given, print some help text */
|
||
| 93 | if (argc == 0 || strcmp(argv[0], "help") == 0) { |
||
| 94 | chprintf(chp, "\tUSAGE:\n");
|
||
| 95 | chprintf(chp, "> shutdown <type>\n");
|
||
| 96 | chprintf(chp, "\n");
|
||
| 97 | chprintf(chp, "\ttype\n");
|
||
| 98 | chprintf(chp, "The type of shutdown to perform.\n");
|
||
| 99 | chprintf(chp, "Choose one of the following types:\n");
|
||
| 100 | chprintf(chp, " transportation - Ultra low-power mode with all wakeups disabled.\n");
|
||
| 101 | chprintf(chp, " The robot can not be charged.\n");
|
||
| 102 | chprintf(chp, " deepsleep - Ultra low-power mode with several wakeups enabled.\n");
|
||
| 103 | chprintf(chp, " The robot can only be charged via the power plug.\n");
|
||
| 104 | chprintf(chp, " hibernate - Medium low-power mode, but with full charging capabilities.\n");
|
||
| 105 | chprintf(chp, " restart - Performs a system restart.\n");
|
||
| 106 | chprintf(chp, "Alternatively, you can use the shortcuts 't', 'd', 'h', and 'r' respectively.");
|
||
| 107 | chprintf(chp, "\n");
|
||
| 108 | return;
|
||
| 109 | } |
||
| 110 | |||
| 111 | if (strcmp(argv[0],"transportation") == 0 || strcmp(argv[0],"t") == 0) { |
||
| 112 | shutdown_now = SHUTDOWN_TRANSPORTATION; |
||
| 113 | chprintf(chp, "shutdown to transportation mode initialized\n");
|
||
| 114 | } else if (strcmp(argv[0],"deepsleep") == 0 || strcmp(argv[0],"d") == 0) { |
||
| 115 | shutdown_now = SHUTDOWN_DEEPSLEEP; |
||
| 116 | chprintf(chp, "shutdown to deepsleep mode initialized\n");
|
||
| 117 | } else if (strcmp(argv[0],"hibernate") == 0 || strcmp(argv[0],"h") == 0) { |
||
| 118 | shutdown_now = SHUTDOWN_HIBERNATE; |
||
| 119 | chprintf(chp, "shutdown to hibernate mode initialized\n");
|
||
| 120 | } else if (strcmp(argv[0],"restart") == 0 || strcmp(argv[0],"r") == 0) { |
||
| 121 | chprintf(chp, "restart initialized\n");
|
||
| 122 | shutdown_now = SHUTDOWN_RESTART; |
||
| 123 | } else {
|
||
| 124 | chprintf(chp, "ERROR: unknown argument!\n");
|
||
| 125 | shutdown_now = SHUTDOWN_NONE; |
||
| 126 | } |
||
| 127 | |||
| 128 | return;
|
||
| 129 | } |
||
| 130 | |||
| 131 | void shellRequestWakeup(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 132 | int i;
|
||
| 133 | chprintf(chp, "shellRequestWakeup\n");
|
||
| 134 | |||
| 135 | for (i = 0x00u; i < argc; i++) |
||
| 136 | chprintf(chp, "%s\n", argv[i]);
|
||
| 137 | |||
| 138 | boardWakeup(); |
||
| 139 | } |
||
| 140 | |||
| 141 | void shellRequestGetMemoryData(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 142 | enum Type {HEX, U8, U16, U32, S8, S16, S32};
|
||
| 143 | |||
| 144 | chprintf(chp, "shellRequestReadData\n");
|
||
| 145 | |||
| 146 | if (argc < 2 || strcmp(argv[0],"help") == 0) |
||
| 147 | {
|
||
| 148 | chprintf(chp, "Usage: %s\n","get_memory_data <type> <start> [<count>]"); |
||
| 149 | chprintf(chp, "\n");
|
||
| 150 | chprintf(chp, "\ttype\n");
|
||
| 151 | chprintf(chp, "The data type as which to interpret the data.\n");
|
||
| 152 | chprintf(chp, "Choose one of the following types:\n");
|
||
| 153 | chprintf(chp, " hex - one byte as hexadecimal value\n");
|
||
| 154 | chprintf(chp, " u8 - unsigned integer (8 bit)\n");
|
||
| 155 | chprintf(chp, " u16 - unsigned integer (16 bit)\n");
|
||
| 156 | chprintf(chp, " u32 - unsigned integer (32 bit)\n");
|
||
| 157 | chprintf(chp, " s8 - signed integer (8 bit)\n");
|
||
| 158 | chprintf(chp, " s16 - signed integer (16 bit)\n");
|
||
| 159 | chprintf(chp, " s32 - signed integer (32 bit)\n");
|
||
| 160 | chprintf(chp, "\tstart\n");
|
||
| 161 | chprintf(chp, "The first byte to read from the memory.\n");
|
||
| 162 | chprintf(chp, "\tcount [default = 1]\n");
|
||
| 163 | chprintf(chp, "The number of elements to read.\n");
|
||
| 164 | chprintf(chp, "\n");
|
||
| 165 | chprintf(chp, "\tNOTE\n");
|
||
| 166 | chprintf(chp, "Type conversions of this function might fail.\n");
|
||
| 167 | chprintf(chp, "If so, use type=hex and convert by hand.\n");
|
||
| 168 | chprintf(chp, "\n");
|
||
| 169 | return;
|
||
| 170 | } |
||
| 171 | |||
| 172 | uint8_t type_size = 0;
|
||
| 173 | Type type = HEX; |
||
| 174 | if (strcmp(argv[0],"hex") == 0) { |
||
| 175 | type_size = sizeof(unsigned char); |
||
| 176 | type = HEX; |
||
| 177 | } else if(strcmp(argv[0],"u8") == 0) { |
||
| 178 | type_size = sizeof(uint8_t);
|
||
| 179 | type = U8; |
||
| 180 | } else if(strcmp(argv[0],"u16") == 0) { |
||
| 181 | type_size = sizeof(uint16_t);
|
||
| 182 | type = U16; |
||
| 183 | } else if(strcmp(argv[0],"u32") == 0) { |
||
| 184 | type_size = sizeof(uint32_t);
|
||
| 185 | type = U32; |
||
| 186 | } else if(strcmp(argv[0],"s8") == 0) { |
||
| 187 | type_size = sizeof(int8_t);
|
||
| 188 | type = S8; |
||
| 189 | } else if(strcmp(argv[0],"s16") == 0) { |
||
| 190 | type_size = sizeof(int16_t);
|
||
| 191 | type = S16; |
||
| 192 | } else if(strcmp(argv[0],"s32") == 0) { |
||
| 193 | type_size = sizeof(int32_t);
|
||
| 194 | type = S32; |
||
| 195 | } else {
|
||
| 196 | chprintf(chp, "First argument invalid. Use 'get_memory_data help' for help.\n");
|
||
| 197 | return;
|
||
| 198 | } |
||
| 199 | |||
| 200 | unsigned int start_byte = atoi(argv[1]); |
||
| 201 | |||
| 202 | unsigned int num_elements = 1; |
||
| 203 | if (argc >= 3) |
||
| 204 | num_elements = atoi(argv[2]);
|
||
| 205 | |||
| 206 | const size_t eeprom_size = EEPROM::getsize(&global.at24c01);
|
||
| 207 | uint8_t buffer[eeprom_size]; |
||
| 208 | if (start_byte + (type_size * num_elements) > eeprom_size) {
|
||
| 209 | num_elements = (eeprom_size - start_byte) / type_size; |
||
| 210 | chprintf(chp, "Warning: request exceeds eeprom size -> limiting to %u values.\n", num_elements);
|
||
| 211 | } |
||
| 212 | |||
| 213 | chFileStreamSeek((BaseFileStream*)&global.at24c01, start_byte); |
||
| 214 | |||
| 215 | // Work around, because stm32f1 cannot read a single byte
|
||
| 216 | if (type_size*num_elements < 2) |
||
| 217 | type_size = 2;
|
||
| 218 | |||
| 219 | uint32_t bytes_read = chSequentialStreamRead((BaseFileStream*)&global.at24c01, buffer, type_size*num_elements); |
||
| 220 | |||
| 221 | if (bytes_read != type_size*num_elements)
|
||
| 222 | chprintf(chp, "Warning: %u of %u requested bytes were read.\n", bytes_read, type_size*num_elements);
|
||
| 223 | |||
| 224 | for (unsigned int i = 0; i < num_elements; ++i) { |
||
| 225 | switch (type) {
|
||
| 226 | case HEX:
|
||
| 227 | chprintf(chp, "%02X ", buffer[i]);
|
||
| 228 | break;
|
||
| 229 | case U8:
|
||
| 230 | chprintf(chp, "%03u ", ((uint8_t*)buffer)[i]);
|
||
| 231 | break;
|
||
| 232 | case U16:
|
||
| 233 | chprintf(chp, "%05u ", ((uint16_t*)buffer)[i]);
|
||
| 234 | break;
|
||
| 235 | case U32:
|
||
| 236 | chprintf(chp, "%010u ", ((uint32_t*)buffer)[i]);
|
||
| 237 | break;
|
||
| 238 | case S8:
|
||
| 239 | chprintf(chp, "%+03d ", ((int8_t*)buffer)[i]);
|
||
| 240 | break;
|
||
| 241 | case S16:
|
||
| 242 | chprintf(chp, "%+05d ", ((int16_t*)buffer)[i]);
|
||
| 243 | break;
|
||
| 244 | case S32:
|
||
| 245 | chprintf(chp, "%+010d ", ((int32_t*)buffer)[i]);
|
||
| 246 | break;
|
||
| 247 | default:
|
||
| 248 | break;
|
||
| 249 | } |
||
| 250 | } |
||
| 251 | chprintf(chp, "\n");
|
||
| 252 | |||
| 253 | return;
|
||
| 254 | } |
||
| 255 | |||
| 256 | void shellRequestSetLights(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 257 | |||
| 258 | if (argc < 2 || argc == 3 ||strcmp(argv[0],"help") == 0) { |
||
| 259 | chprintf(chp, "\tUSAGE:\n");
|
||
| 260 | chprintf(chp, "> set_lights <led mask> <white/red> [<green> <blue>]\n");
|
||
| 261 | chprintf(chp, "\n");
|
||
| 262 | chprintf(chp, "\tled mask\n");
|
||
| 263 | chprintf(chp, "The LEDs to be set.\n");
|
||
| 264 | chprintf(chp, "You can set multiple LEDs at once by adding the following values:\n");
|
||
| 265 | chprintf(chp, " 0x01 - rear left LED (SSW)\n");
|
||
| 266 | chprintf(chp, " 0x02 - left rear LED (WSW)\n");
|
||
| 267 | chprintf(chp, " 0x04 - left front LED (WNW)\n");
|
||
| 268 | chprintf(chp, " 0x08 - front left LED (NNW)\n");
|
||
| 269 | chprintf(chp, " 0x10 - front right LED (NNE)\n");
|
||
| 270 | chprintf(chp, " 0x20 - right front LED (ENE)\n");
|
||
| 271 | chprintf(chp, " 0x40 - right rear LED (ESE)\n");
|
||
| 272 | chprintf(chp, " 0x80 - rear right LED (SSE)\n");
|
||
| 273 | chprintf(chp, "\twhite/red\n");
|
||
| 274 | chprintf(chp, "If no optional argument is given, this arguments sets the white value of the selected LEDs.\n");
|
||
| 275 | chprintf(chp, "Otherwise this arguments sets the red color channel value.\n");
|
||
| 276 | chprintf(chp, "\tgreen\n");
|
||
| 277 | chprintf(chp, "Sets the green color channel value.\n");
|
||
| 278 | chprintf(chp, "\tblue\n");
|
||
| 279 | chprintf(chp, "Sets the blue color channel value.\n");
|
||
| 280 | chprintf(chp, "\n");
|
||
| 281 | chprintf(chp, "\tExample:\n");
|
||
| 282 | chprintf(chp, "This line will set the two most left and two most right LEDs to bright cyan.\n");
|
||
| 283 | chprintf(chp, "> set_lights 0x66 0 255 255\n");
|
||
| 284 | chprintf(chp, "\n");
|
||
| 285 | return;
|
||
| 286 | } |
||
| 287 | |||
| 288 | int arg_mask = strtol(argv[0], NULL, 0); |
||
| 289 | int red = strtol(argv[1], NULL, 0); |
||
| 290 | int green = red;
|
||
| 291 | int blue = red;
|
||
| 292 | if (argc >= 4) { |
||
| 293 | green = strtol(argv[2], NULL, 0); |
||
| 294 | blue = strtol(argv[3], NULL, 0); |
||
| 295 | } |
||
| 296 | Color color(red, green, blue); |
||
| 297 | |||
| 298 | if (arg_mask & 0x01) { |
||
| 299 | global.robot.setLightColor(constants::LightRing::LED_SSW, color); |
||
| 300 | } |
||
| 301 | if (arg_mask & 0x02) { |
||
| 302 | global.robot.setLightColor(constants::LightRing::LED_WSW, color); |
||
| 303 | } |
||
| 304 | if (arg_mask & 0x04) { |
||
| 305 | global.robot.setLightColor(constants::LightRing::LED_WNW, color); |
||
| 306 | } |
||
| 307 | if (arg_mask & 0x08) { |
||
| 308 | global.robot.setLightColor(constants::LightRing::LED_NNW, color); |
||
| 309 | } |
||
| 310 | if (arg_mask & 0x10) { |
||
| 311 | global.robot.setLightColor(constants::LightRing::LED_NNE, color); |
||
| 312 | } |
||
| 313 | if (arg_mask & 0x20) { |
||
| 314 | global.robot.setLightColor(constants::LightRing::LED_ENE, color); |
||
| 315 | } |
||
| 316 | if (arg_mask & 0x40) { |
||
| 317 | global.robot.setLightColor(constants::LightRing::LED_ESE, color); |
||
| 318 | } |
||
| 319 | if (arg_mask & 0x80) { |
||
| 320 | global.robot.setLightColor(constants::LightRing::LED_SSE, color); |
||
| 321 | } |
||
| 322 | |||
| 323 | return;
|
||
| 324 | } |
||
| 325 | |||
| 326 | void boardPeripheryCheck(BaseSequentialStream *chp) {
|
||
| 327 | msg_t result; |
||
| 328 | chprintf(chp, "\nCHECK: START\n");
|
||
| 329 | // Check the accelerometer
|
||
| 330 | result = global.lis331dlh.getCheck(); |
||
| 331 | if (result == global.lis331dlh.CHECK_OK)
|
||
| 332 | chprintf(chp, "LIS331DLH: OK\n");
|
||
| 333 | else
|
||
| 334 | chprintf(chp, "LIS331DLH: FAIL\n");
|
||
| 335 | |||
| 336 | // Self-test accelerometer
|
||
| 337 | // lis331dlh.printSelfTest(NULL);
|
||
| 338 | |||
| 339 | // Check the eeprom
|
||
| 340 | result = global.memory.getCheck(); |
||
| 341 | if ( result != global.memory.OK)
|
||
| 342 | chprintf(chp, "Memory Structure: FAIL\n");
|
||
| 343 | else
|
||
| 344 | chprintf(chp, "Memory Structure: OK\n");
|
||
| 345 | |||
| 346 | // Check the gyroscope
|
||
| 347 | result = global.l3g4200d.getCheck(); |
||
| 348 | if (result == global.l3g4200d.CHECK_OK)
|
||
| 349 | chprintf(chp, "L3G4200D: OK\n");
|
||
| 350 | else
|
||
| 351 | chprintf(chp, "L3G4200D: FAIL\n");
|
||
| 352 | |||
| 353 | // Check the magnetometer
|
||
| 354 | result = global.hmc5883l.getCheck(); |
||
| 355 | if (result == global.hmc5883l.CHECK_OK)
|
||
| 356 | chprintf(chp, "HMC5883L: OK\n");
|
||
| 357 | else
|
||
| 358 | chprintf(chp, "HMC5883L: FAIL\n");
|
||
| 359 | |||
| 360 | // Check the MUX
|
||
| 361 | result = global.HW_PCA9544.getCheck(); |
||
| 362 | if (result == global.HW_PCA9544.CHECK_OK)
|
||
| 363 | chprintf(chp, "PCA9544: OK\n");
|
||
| 364 | else
|
||
| 365 | chprintf(chp, "PCA9544: FAIL\n");
|
||
| 366 | |||
| 367 | // Check the power monitor
|
||
| 368 | chprintf(chp, "INA219:\tVDD (3.3V):\n");
|
||
| 369 | result = global.ina219.selftest(); |
||
| 370 | if (result == BaseSensor<>::NOT_IMPLEMENTED)
|
||
| 371 | chprintf(chp, "->\tnot implemented\n");
|
||
| 372 | else if (result != INA219::Driver::ST_OK) |
||
| 373 | chprintf(chp, "->\tFAIL (error code 0x%02X)\n", result);
|
||
| 374 | else
|
||
| 375 | chprintf(chp, "->\tOK\n");
|
||
| 376 | |||
| 377 | // Check the proximitysensors
|
||
| 378 | for (uint8_t i = 0x00; i < global.vcnl4020.size(); i++) { |
||
| 379 | result = global.vcnl4020[i].getCheck(); |
||
| 380 | if (result == global.vcnl4020[i].CHECK_OK)
|
||
| 381 | chprintf(chp, "VCNL4020: %d OK\n", i);
|
||
| 382 | else
|
||
| 383 | chprintf(chp, "VCNL4020: %d FAIL\n", i);
|
||
| 384 | } |
||
| 385 | chprintf(chp, "CHECK: FINISH\n");
|
||
| 386 | } |
||
| 387 | |||
| 388 | void shellRequestCheck(BaseSequentialStream *chp, int __unused argc, char __unused *argv[]) { |
||
| 389 | chprintf(chp, "shellRequestCheck\n");
|
||
| 390 | boardPeripheryCheck(chp); |
||
| 391 | } |
||
| 392 | |||
| 393 | void shellRequestResetMemory(BaseSequentialStream *chp, int __unused argc, char __unused *argv[]) { |
||
| 394 | chprintf(chp, "shellRequestInitMemory\n");
|
||
| 395 | |||
| 396 | msg_t res = global.memory.resetMemory(); |
||
| 397 | if ( res != global.memory.OK)
|
||
| 398 | chprintf(chp, "Memory Init: FAIL\n");
|
||
| 399 | else
|
||
| 400 | chprintf(chp, "Memory Init: OK\n");
|
||
| 401 | } |
||
| 402 | |||
| 403 | void shellRequestGetBoardId(BaseSequentialStream *chp, int __unused argc, char __unused *argv[]) { |
||
| 404 | chprintf(chp, "shellRequestGetBoardId\n");
|
||
| 405 | uint8_t id = 0xFFu;
|
||
| 406 | |||
| 407 | msg_t res = global.memory.getBoardId(&id); |
||
| 408 | |||
| 409 | if (res != global.memory.OK)
|
||
| 410 | chprintf(chp, "Get Board ID: FAIL\n");
|
||
| 411 | else
|
||
| 412 | chprintf(chp, "Get Board ID: %u\n", id);
|
||
| 413 | } |
||
| 414 | |||
| 415 | void shellRequestSetBoardId(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 416 | chprintf(chp, "shellRequestSetBoardId\n");
|
||
| 417 | |||
| 418 | if (argc == 0) { |
||
| 419 | chprintf(chp, "Usage: %s\n","set_board_id <idx>"); |
||
| 420 | } else {
|
||
| 421 | msg_t res = global.memory.setBoardId(atoi(argv[0]));
|
||
| 422 | if (res != global.memory.OK)
|
||
| 423 | chprintf(chp, "Set Board ID: FAIL\n");
|
||
| 424 | else
|
||
| 425 | chprintf(chp, "Set Board ID: OK\n");
|
||
| 426 | } |
||
| 427 | } |
||
| 428 | |||
| 429 | void shellRequestResetCalibrationConstants(BaseSequentialStream *chp, int __unused argc, char __unused *argv[]) { |
||
| 430 | chprintf(chp, "shellRequestResetCalibrationConstants\n");
|
||
| 431 | chprintf(chp, "Setting Ed=1.0f, Eb=1.0f\n");
|
||
| 432 | msg_t res; |
||
| 433 | |||
| 434 | res = global.memory.setEd(1.0f); |
||
| 435 | if (res != global.memory.OK)
|
||
| 436 | chprintf(chp, "Set Ed: FAIL\n");
|
||
| 437 | else
|
||
| 438 | chprintf(chp, "Set Ed: OK\n");
|
||
| 439 | |||
| 440 | res = global.memory.setEb(1.0f); |
||
| 441 | if (res != global.memory.OK)
|
||
| 442 | chprintf(chp, "Set Eb: FAIL\n");
|
||
| 443 | else
|
||
| 444 | chprintf(chp, "Set Eb: OK\n");
|
||
| 445 | } |
||
| 446 | |||
| 447 | void shellRequestGetCalibrationConstants(BaseSequentialStream *chp, int __unused argc, char __unused *argv[]) { |
||
| 448 | chprintf(chp, "shellRequestGetCalibrationConstants\n");
|
||
| 449 | msg_t res; |
||
| 450 | float Ed, Eb;
|
||
| 451 | |||
| 452 | res = global.memory.getEd(&Ed); |
||
| 453 | if (res != global.memory.OK)
|
||
| 454 | chprintf(chp, "Get Ed: FAIL\n");
|
||
| 455 | else
|
||
| 456 | chprintf(chp, "Get Ed: OK \t Ed=%f\n", Ed);
|
||
| 457 | |||
| 458 | res = global.memory.getEb(&Eb); |
||
| 459 | if (res != global.memory.OK)
|
||
| 460 | chprintf(chp, "Get Eb: FAIL\n");
|
||
| 461 | else
|
||
| 462 | chprintf(chp, "Get Eb: OK \t Eb=%f\n", Eb);
|
||
| 463 | } |
||
| 464 | |||
| 465 | void shellRequestSetCalibrationConstants(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 466 | chprintf(chp, "shellRequestSetCalibrationConstants\n");
|
||
| 467 | msg_t res; |
||
| 468 | |||
| 469 | if (argc != 3) { |
||
| 470 | chprintf(chp, "Usage: %s\n","set_Ed_Eb <Ed> <Eb> <Write To Eeprom ? 1 : 0>"); |
||
| 471 | chprintf(chp, "(Call with floating point values for Ed and Eb values and write condition):\n");
|
||
| 472 | return;
|
||
| 473 | } |
||
| 474 | // Get the write condition
|
||
| 475 | const float Ed = atof(argv[0]); |
||
| 476 | const float Eb = atof(argv[1]); |
||
| 477 | bool_t writeToMemory = atoi(argv[2]) == 1 ? true : false; |
||
| 478 | |||
| 479 | res = global.motorcontrol.setWheelDiameterCorrectionFactor(Ed, writeToMemory); |
||
| 480 | if (res != global.memory.OK)
|
||
| 481 | chprintf(chp, "Set Ed: FAIL\n");
|
||
| 482 | else
|
||
| 483 | chprintf(chp, "Set Ed: OK \t Ed=%f\n", Ed);
|
||
| 484 | |||
| 485 | res = global.motorcontrol.setActualWheelBaseDistance(Eb, writeToMemory); |
||
| 486 | if (res != global.memory.OK)
|
||
| 487 | chprintf(chp, "Set Eb: FAIL\n");
|
||
| 488 | else
|
||
| 489 | chprintf(chp, "Set Eb: OK \t Ed=%f\n", Eb);
|
||
| 490 | } |
||
| 491 | |||
| 492 | void shellRequestGetVcnl(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 493 | chprintf(chp, "shellRequestGetVcnl\n");
|
||
| 494 | // Print the sensor information
|
||
| 495 | if (argc != 1) { |
||
| 496 | chprintf(chp, "Usage: %s\n","get_vcnl <rep>"); |
||
| 497 | return;
|
||
| 498 | } |
||
| 499 | for (int32_t rep = 0x00; rep < atoi(argv[0]); ++rep) { |
||
| 500 | for (uint8_t idx = 0x00; idx < global.vcnl4020.size(); idx++) { |
||
| 501 | chprintf(chp, "%d: Ambi %d\tProx raw %d\tProx scaled %d\n", idx, global.vcnl4020[idx].getAmbientLight(), global.vcnl4020[idx].getProximity(), global.vcnl4020[idx].getProximityScaledWoOffset());
|
||
| 502 | } |
||
| 503 | chprintf(chp, "\n\n");
|
||
| 504 | BaseThread::sleep(MS2ST(250));
|
||
| 505 | } |
||
| 506 | } |
||
| 507 | |||
| 508 | void shellRequestSetVcnlOffset(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 509 | chprintf(chp, "shellRequestSetVcnlOffset\n");
|
||
| 510 | if (argc != 2) { |
||
| 511 | chprintf(chp, "Usage: %s\n","set_vcnl <idx> <offset>"); |
||
| 512 | return;
|
||
| 513 | } |
||
| 514 | |||
| 515 | uint8_t vcnlIdx = static_cast<uint8_t>(atoi(argv[0])); |
||
| 516 | uint16_t vcnlOffset = static_cast<uint16_t>(atoi(argv[1])); |
||
| 517 | |||
| 518 | if (vcnlIdx >= global.vcnl4020.size()) {
|
||
| 519 | chprintf(chp, "Wrong VCNL index: Choose [0 .. %d]\n", global.vcnl4020.size()-1); |
||
| 520 | return;
|
||
| 521 | } |
||
| 522 | |||
| 523 | msg_t res = global.memory.setVcnl4020Offset(vcnlOffset, vcnlIdx); |
||
| 524 | if (res != global.memory.OK) {
|
||
| 525 | chprintf(chp, "Set Offset: FAIL\n");
|
||
| 526 | } else {
|
||
| 527 | chprintf(chp, "Set Offset: OK\n");
|
||
| 528 | global.vcnl4020[vcnlIdx].setProximityOffset(vcnlOffset); |
||
| 529 | } |
||
| 530 | } |
||
| 531 | |||
| 532 | void shellRequestResetVcnlOffset(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 533 | msg_t res = global.memory.OK; |
||
| 534 | for (uint8_t idx = 0; idx < 4; ++idx) { |
||
| 535 | msg_t r = global.memory.setVcnl4020Offset(0, idx);
|
||
| 536 | if (r == global.memory.OK) {
|
||
| 537 | global.vcnl4020[idx].setProximityOffset(0);
|
||
| 538 | } else {
|
||
| 539 | chprintf(chp, "Reset Offset %u: FAIL\n", idx);
|
||
| 540 | res = r; |
||
| 541 | } |
||
| 542 | } |
||
| 543 | |||
| 544 | if (res == global.memory.OK) {
|
||
| 545 | chprintf(chp, "Reset Offset: DONE\n");
|
||
| 546 | } |
||
| 547 | |||
| 548 | return;
|
||
| 549 | } |
||
| 550 | |||
| 551 | void shellRequestGetVcnlOffset(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 552 | chprintf(chp, "shellRequestGetVcnlOffset\n");
|
||
| 553 | if (argc != 1) { |
||
| 554 | chprintf(chp, "Call with decimal numbers: get_vcnl <idx>\n");
|
||
| 555 | return;
|
||
| 556 | } |
||
| 557 | |||
| 558 | uint8_t vcnlIdx = static_cast<uint8_t>(atoi(argv[0])); |
||
| 559 | |||
| 560 | if (vcnlIdx >= global.vcnl4020.size()) {
|
||
| 561 | chprintf(chp, "Wrong VCNL index: Choose [0 .. %d]\n", global.vcnl4020.size()-1); |
||
| 562 | return;
|
||
| 563 | } |
||
| 564 | |||
| 565 | uint16_t vcnlOffset; |
||
| 566 | msg_t res = global.memory.getVcnl4020Offset(&vcnlOffset, vcnlIdx); |
||
| 567 | if (res != global.memory.OK) {
|
||
| 568 | chprintf(chp, "Get Offset: FAIL\n");
|
||
| 569 | } else {
|
||
| 570 | chprintf(chp, "Get Offset: OK \t Offset=%d\n", vcnlOffset);
|
||
| 571 | } |
||
| 572 | } |
||
| 573 | |||
| 574 | void shellRequestCalib(BaseSequentialStream *chp, int __unused argc, char __unused *argv[]) { |
||
| 575 | chprintf(chp, "shellRequestCalib\n");
|
||
| 576 | global.robot.calibrate(); |
||
| 577 | } |
||
| 578 | |||
| 579 | void shellRequestGetRobotId(BaseSequentialStream *chp, int __unused argc, char __unused *argv[]) { |
||
| 580 | chprintf(chp, "shellRequestGetRobotId\n");
|
||
| 581 | chprintf(chp, "Robot ID: %u\n", global.robot.getRobotID());
|
||
| 582 | if (global.robot.getRobotID() == 0) |
||
| 583 | chprintf(chp, "Warning: The board ID seems to be uninitialized.\n");
|
||
| 584 | } |
||
| 585 | |||
| 586 | void shellRequestGetSystemLoad(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 587 | chprintf(chp, "shellRequestGetSystemLoad\n");
|
||
| 588 | uint8_t seconds = 1;
|
||
| 589 | if (argc >= 1) { |
||
| 590 | seconds = atoi(argv[0]);
|
||
| 591 | } |
||
| 592 | chprintf(chp, "measuring CPU load for %u %s...\n", seconds, (seconds>1)? "seconds" : "second"); |
||
| 593 | |||
| 594 | const systime_t before = chThdGetTicks(chSysGetIdleThread());
|
||
| 595 | BaseThread::sleep(S2ST(seconds)); |
||
| 596 | const systime_t after = chThdGetTicks(chSysGetIdleThread());
|
||
| 597 | const float usage = 1.0f - (float(after - before) / float(seconds * CH_FREQUENCY)); |
||
| 598 | |||
| 599 | chprintf(chp, "CPU load: %3.2f%%\n", usage * 100); |
||
| 600 | const uint32_t memory_total = 0x10000; |
||
| 601 | const uint32_t memory_load = memory_total - chCoreStatus();
|
||
| 602 | chprintf(chp, "RAM load: %3.2f%% (%u / %u Byte)\n", float(memory_load)/float(memory_total) * 100, memory_load, memory_total); |
||
| 603 | } |
||
| 604 | |||
| 605 | void shellSwitchBoardCmd(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 606 | if (argc != 1) { |
||
| 607 | chprintf(chp, "Call with decimal numbers: shell_board <idx>\n");
|
||
| 608 | return;
|
||
| 609 | } |
||
| 610 | uint8_t boardIdx = static_cast<uint8_t>(atoi(argv[0])); |
||
| 611 | |||
| 612 | chprintf(chp, "shellSwitchBoardCmd\n");
|
||
| 613 | global.sercanmux1.sendSwitchCmd(boardIdx); |
||
| 614 | } |
||
| 615 | |||
| 616 | void shellRequestGetBootloaderInfo(BaseSequentialStream* chp, int argc, char *argv[]) { |
||
| 617 | // check the magic number
|
||
| 618 | 10687985 | Thomas Schöpping | switch (*((uint32_t*)(BL_CALLBACK_TABLE_ADDR))) {
|
| 619 | case (('A'<<24) | ('-'<<16) | ('B'<<8) | ('L'<<0)): |
||
| 620 | chprintf((BaseSequentialStream*) &SD1, "Bootloader %u.%u.%u\n",
|
||
| 621 | ((blVersion_t*)(BL_CALLBACK_TABLE_ADDR + (1*4)))->major, |
||
| 622 | ((blVersion_t*)(BL_CALLBACK_TABLE_ADDR + (1*4)))->minor, |
||
| 623 | ((blVersion_t*)(BL_CALLBACK_TABLE_ADDR + (1*4)))->patch); |
||
| 624 | break;
|
||
| 625 | |||
| 626 | case BL_MAGIC_NUMBER:
|
||
| 627 | chprintf((BaseSequentialStream*) &SD1, "Bootloader %u.%u.%u\n",
|
||
| 628 | *((uint32_t*)(BL_CALLBACK_TABLE_ADDR + (1*4))), |
||
| 629 | *((uint32_t*)(BL_CALLBACK_TABLE_ADDR + (1*4))), |
||
| 630 | *((uint32_t*)(BL_CALLBACK_TABLE_ADDR + (1*4)))); |
||
| 631 | break;
|
||
| 632 | |||
| 633 | default:
|
||
| 634 | chprintf((BaseSequentialStream*) &SD1, "Bootloader incompatible\n");
|
||
| 635 | break;
|
||
| 636 | 58fe0e0b | Thomas Schöpping | } |
| 637 | |||
| 638 | return;
|
||
| 639 | } |
||
| 640 | |||
| 641 | void shellRequestMotorDrive(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 642 | types::kinematic tmp; |
||
| 643 | tmp.w_z = 0;
|
||
| 644 | tmp.x = 0;
|
||
| 645 | if (argc == 1){ |
||
| 646 | chprintf(chp, "Set speed to %i um/s \n", atoi(argv[0])); |
||
| 647 | tmp.x = atoi(argv[0]);
|
||
| 648 | } else {
|
||
| 649 | if(argc == 2){ |
||
| 650 | chprintf(chp, "Set speed to %i \n um/s", atoi(argv[0])); |
||
| 651 | chprintf(chp, "Set angular speed to %i \n urad/s", atoi(argv[1])); |
||
| 652 | tmp.x = atoi(argv[0]);
|
||
| 653 | tmp.w_z= atoi(argv[1]);
|
||
| 654 | } else {
|
||
| 655 | chprintf(chp, "Wrong number of parameters given (%i), stopping robot \n", argc);
|
||
| 656 | } |
||
| 657 | } |
||
| 658 | |||
| 659 | global.motorcontrol.setTargetSpeed(tmp); |
||
| 660 | return;
|
||
| 661 | } |
||
| 662 | |||
| 663 | void shellRequestMotorStop(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 664 | types::kinematic tmp; |
||
| 665 | tmp.x = 0;
|
||
| 666 | tmp.w_z = 0;
|
||
| 667 | |||
| 668 | global.motorcontrol.setTargetSpeed(tmp); |
||
| 669 | |||
| 670 | chprintf(chp, "stop");
|
||
| 671 | return;
|
||
| 672 | } |
||
| 673 | |||
| 674 | void shellRequestMotorCalibrate(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 675 | ff7ad65b | Thomas Schöpping | global.motorcontrol.resetGains(); |
| 676 | chprintf((BaseSequentialStream*)&global.sercanmux1, "motor calibration starts in five seconds...\n");
|
||
| 677 | BaseThread::sleep(MS2ST(5000));
|
||
| 678 | 58fe0e0b | Thomas Schöpping | global.motorcontrol.isCalibrating = true;
|
| 679 | |||
| 680 | return;
|
||
| 681 | } |
||
| 682 | |||
| 683 | void shellRequestMotorGetGains(BaseSequentialStream *chp, int argc, char *argv[]){ |
||
| 684 | global.motorcontrol.printGains(); |
||
| 685 | |||
| 686 | return;
|
||
| 687 | } |
||
| 688 | |||
| 689 | ff7ad65b | Thomas Schöpping | void shellRequestMotorResetGains(BaseSequentialStream *chp, int argc, char *argv[]) { |
| 690 | global.motorcontrol.resetGains();; |
||
| 691 | |||
| 692 | return;
|
||
| 693 | } |
||
| 694 | |||
| 695 | 12463563 | galberding | |
| 696 | /**
|
||
| 697 | * Calibrate the thresholds for left and right sensor to get the maximum threshold and to
|
||
| 698 | * be able to detect the correction direction.
|
||
| 699 | * In this case it is expected that the FL-Sensor sould be in the white part of the edge and the FR-Sensor in the black one.
|
||
| 700 | *
|
||
| 701 | * Note: invert the threshs to drive on the other edge.
|
||
| 702 | *
|
||
| 703 | * */
|
||
| 704 | void calibrateLineSensores(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 705 | 1b3adcdd | galberding | // int vcnl4020AmbientLight[4];
|
| 706 | 12463563 | galberding | int vcnl4020Proximity[4]; |
| 707 | int rounds = 1; |
||
| 708 | int proxyL = 0; |
||
| 709 | int proxyR = 0; |
||
| 710 | int maxDelta = 0; |
||
| 711 | 22b85da1 | galberding | int sensorL = 0; |
| 712 | int sensorR = 0; |
||
| 713 | 12463563 | galberding | |
| 714 | if (argc == 1){ |
||
| 715 | chprintf(chp, "Test %i rounds \n", atoi(argv[0])); |
||
| 716 | rounds = atoi(argv[0]);
|
||
| 717 | |||
| 718 | }else{
|
||
| 719 | chprintf(chp, "Usage: calbrate_line_sensors [1,n]\nThis will calibrate the thresholds for the left and right sensor\naccording to the maximum delta value recorded.\n");
|
||
| 720 | return;
|
||
| 721 | } |
||
| 722 | af93a91c | galberding | for (uint8_t led = 0; led < 8; ++led) { |
| 723 | global.robot.setLightColor(led, Color(Color::BLACK)); |
||
| 724 | } |
||
| 725 | 12463563 | galberding | |
| 726 | for (int j = 0; j < rounds; j++) { |
||
| 727 | for (int i = 0; i < 4; i++) { |
||
| 728 | 1b3adcdd | galberding | // vcnl4020AmbientLight[i] = global.vcnl4020[i].getAmbientLight();
|
| 729 | 12463563 | galberding | vcnl4020Proximity[i] = global.vcnl4020[i].getProximityScaledWoOffset(); |
| 730 | } |
||
| 731 | af93a91c | galberding | global.robot.setLightColor(j % 8, Color(Color::BLACK));
|
| 732 | global.robot.setLightColor(j+1 % 8, Color(Color::WHITE)); |
||
| 733 | 12463563 | galberding | int delta = abs(vcnl4020Proximity[constants::DiWheelDrive::PROX_FRONT_LEFT]
|
| 734 | - vcnl4020Proximity[constants::DiWheelDrive::PROX_FRONT_RIGHT]); |
||
| 735 | // Update proximity thresh
|
||
| 736 | if (delta > maxDelta) {
|
||
| 737 | af93a91c | galberding | for (uint8_t led = 0; led < 8; ++led) { |
| 738 | global.robot.setLightColor(led, Color(Color::GREEN)); |
||
| 739 | } |
||
| 740 | 12463563 | galberding | maxDelta = delta; |
| 741 | proxyL = vcnl4020Proximity[constants::DiWheelDrive::PROX_FRONT_LEFT]; |
||
| 742 | proxyR = vcnl4020Proximity[constants::DiWheelDrive::PROX_FRONT_RIGHT]; |
||
| 743 | } |
||
| 744 | 22b85da1 | galberding | sensorL += global.vcnl4020[constants::DiWheelDrive::PROX_FRONT_LEFT].getProximityScaledWoOffset(); |
| 745 | sensorR += global.vcnl4020[constants::DiWheelDrive::PROX_FRONT_RIGHT].getProximityScaledWoOffset(); |
||
| 746 | 12463563 | galberding | |
| 747 | // if (vcnl4020Proximity[constants::DiWheelDrive::PROX_FRONT_RIGHT] > proxyR && vcnl4020Proximity[constants::DiWheelDrive::PROX_FRONT_LEFT] > proxyL ){
|
||
| 748 | // delta *= -1;
|
||
| 749 | // }
|
||
| 750 | |||
| 751 | chprintf(chp,"FL: 0x%x, FR: 0x%x, Delta: %d, ProxyL: %x, ProxyR: %x, MaxDelta: %d\n",
|
||
| 752 | vcnl4020Proximity[constants::DiWheelDrive::PROX_FRONT_LEFT], |
||
| 753 | vcnl4020Proximity[constants::DiWheelDrive::PROX_FRONT_RIGHT], |
||
| 754 | delta, |
||
| 755 | proxyL, |
||
| 756 | proxyR, |
||
| 757 | maxDelta); |
||
| 758 | // sleep(CAN::UPDATE_PERIOD);
|
||
| 759 | BaseThread::sleep(CAN::UPDATE_PERIOD); |
||
| 760 | } |
||
| 761 | 22b85da1 | galberding | |
| 762 | 12463563 | galberding | |
| 763 | 22b85da1 | galberding | global.threshProxyL = sensorL / rounds; |
| 764 | global.threshProxyR = sensorR / rounds; |
||
| 765 | chprintf(chp,"Thresh FL: %d, FR: %d\n", global.threshProxyL, global.threshProxyR);
|
||
| 766 | 12463563 | galberding | return;
|
| 767 | } |
||
| 768 | |||
| 769 | |||
| 770 | |||
| 771 | void proxySensorData(BaseSequentialStream *chp, int argc, char *argv[]) { |
||
| 772 | 1b3adcdd | galberding | // uint16_t vcnl4020AmbientLight[4];
|
| 773 | af93a91c | galberding | uint16_t vcnl4020Proximity[4];
|
| 774 | uint16_t rounds = 1;
|
||
| 775 | 1b3adcdd | galberding | // uint16_t proxyL = global.threshProxyL;
|
| 776 | // uint16_t proxyR = global.threshProxyR;
|
||
| 777 | // uint16_t maxDelta = 0;
|
||
| 778 | 22b85da1 | galberding | |
| 779 | 1b3adcdd | galberding | // int sensorL = 0;
|
| 780 | // int sensorR = 0;
|
||
| 781 | 12463563 | galberding | if (argc == 1){ |
| 782 | chprintf(chp, "Test %i rounds \n", atoi(argv[0])); |
||
| 783 | rounds = atoi(argv[0]);
|
||
| 784 | |||
| 785 | } |
||
| 786 | bfffb0bd | galberding | global.motorcontrol.getGains(&global.motorConfigGains); |
| 787 | global.motorcontrol.setGains(&global.stopGains); |
||
| 788 | 12463563 | galberding | |
| 789 | for (int j = 0; j < rounds; j++) { |
||
| 790 | for (int i = 0; i < 4; i++) { |
||
| 791 | 1b3adcdd | galberding | // vcnl4020AmbientLight[i] = global.vcnl4020[i].getAmbientLight();
|
| 792 | 12463563 | galberding | vcnl4020Proximity[i] = global.vcnl4020[i].getProximityScaledWoOffset(); |
| 793 | } |
||
| 794 | 22b85da1 | galberding | |
| 795 | af93a91c | galberding | uint16_t delta = (vcnl4020Proximity[constants::DiWheelDrive::PROX_FRONT_LEFT] |
| 796 | 12463563 | galberding | - vcnl4020Proximity[constants::DiWheelDrive::PROX_FRONT_RIGHT]); |
| 797 | // // Update proximity thresh
|
||
| 798 | // if (delta > maxDelta) {
|
||
| 799 | // maxDelta = delta;
|
||
| 800 | // proxyL = vcnl4020Proximity[constants::DiWheelDrive::PROX_FRONT_LEFT];
|
||
| 801 | // proxyR = vcnl4020Proximity[constants::DiWheelDrive::PROX_FRONT_RIGHT];
|
||
| 802 | // }
|
||
| 803 | |||
| 804 | af93a91c | galberding | // if (vcnl4020Proximity[constants::DiWheelDrive::PROX_FRONT_RIGHT] > proxyR && vcnl4020Proximity[constants::DiWheelDrive::PROX_FRONT_LEFT] > proxyL ){
|
| 805 | // delta *= -1;
|
||
| 806 | // }
|
||
| 807 | 12463563 | galberding | |
| 808 | af93a91c | galberding | chprintf(chp,"WL:%d,FL:%d,FR:%d,WR:%d,Delta:%d\n",
|
| 809 | 12463563 | galberding | vcnl4020Proximity[constants::DiWheelDrive::PROX_WHEEL_LEFT], |
| 810 | vcnl4020Proximity[constants::DiWheelDrive::PROX_FRONT_LEFT], |
||
| 811 | vcnl4020Proximity[constants::DiWheelDrive::PROX_FRONT_RIGHT], |
||
| 812 | vcnl4020Proximity[constants::DiWheelDrive::PROX_WHEEL_RIGHT], |
||
| 813 | delta); |
||
| 814 | // sleep(CAN::UPDATE_PERIOD);
|
||
| 815 | BaseThread::sleep(CAN::UPDATE_PERIOD); |
||
| 816 | } |
||
| 817 | bfffb0bd | galberding | global.motorcontrol.setGains(&global.motorConfigGains); |
| 818 | af93a91c | galberding | // chprintf(chp,"Summary: MaxDelta: %d, FL: %x, FR: %d\n", maxDelta, proxyL, proxyR);
|
| 819 | 12463563 | galberding | return;
|
| 820 | } |
||
| 821 | |||
| 822 | 22b85da1 | galberding | // Either 0 to disable record or > 0 to enable it
|
| 823 | void setRecord(BaseSequentialStream *chp, int argc, char *argv[]){ |
||
| 824 | if (argc == 1){ |
||
| 825 | chprintf(chp, "Set recording to %d\n", atoi(argv[0])); |
||
| 826 | global.enableRecord = atoi(argv[0]);
|
||
| 827 | } |
||
| 828 | } |
||
| 829 | 12463563 | galberding | |
| 830 | |||
| 831 | af93a91c | galberding | void zieglerMeth2(BaseSequentialStream *chp, int argc, char *argv[]) { |
| 832 | 1b3adcdd | galberding | // int vcnl4020AmbientLight[4];
|
| 833 | // int vcnl4020Proximity[4];
|
||
| 834 | af93a91c | galberding | int rpmSpeed[2] = {0}; |
| 835 | int steps = 0; |
||
| 836 | 1b3adcdd | galberding | // int proxyL = global.threshProxyL;
|
| 837 | // int proxyR = global.threshProxyR;
|
||
| 838 | af93a91c | galberding | int maxDelta = 0; |
| 839 | float KCrit = 0.0f; |
||
| 840 | 88afb834 | galberding | global.sensSamples = 0;
|
| 841 | 22b85da1 | galberding | global.maxDist.error = 0;
|
| 842 | af93a91c | galberding | LineFollow lf(&global); |
| 843 | 22b85da1 | galberding | int led = 0; |
| 844 | af93a91c | galberding | |
| 845 | if (argc == 2){ |
||
| 846 | chprintf(chp, "KCrti %f\n", atof(argv[0])); |
||
| 847 | chprintf(chp, "Steps %i\n", atoi(argv[1])); |
||
| 848 | KCrit = atof(argv[0]);
|
||
| 849 | steps = atoi(argv[1]);
|
||
| 850 | 22b85da1 | galberding | } else if (argc == 3){ |
| 851 | chprintf(chp, "KCrti %f\n", atof(argv[0])); |
||
| 852 | chprintf(chp, "Steps %i\n", atoi(argv[1])); |
||
| 853 | KCrit = atof(argv[0]);
|
||
| 854 | steps = atoi(argv[1]);
|
||
| 855 | global.forwardSpeed = atoi(argv[2]);
|
||
| 856 | |||
| 857 | }else{
|
||
| 858 | chprintf(chp, "Usage: dev_ziegler2 <K_crit> <steps> (<speed>)");
|
||
| 859 | af93a91c | galberding | return;
|
| 860 | } |
||
| 861 | 22b85da1 | galberding | global.K_p = KCrit; |
| 862 | for(led=0; led<8; led++){ |
||
| 863 | global.robot.setLightColor(led, Color(Color::BLACK)); |
||
| 864 | } |
||
| 865 | 88afb834 | galberding | chprintf((BaseSequentialStream*)&global.sercanmux1, "Recodring starts in five seconds...\n");
|
| 866 | BaseThread::sleep(MS2ST(5000));
|
||
| 867 | af93a91c | galberding | // global.motorcontrol.setTargetRPM(rpmSpeed[constants::DiWheelDrive::LEFT_WHEEL] * 1000000, rpmSpeed[constants::DiWheelDrive::RIGHT_WHEEL] * 1000000);
|
| 868 | 22b85da1 | galberding | int checkWhite = 0; |
| 869 | int it_switch = steps / 2; |
||
| 870 | 1b3adcdd | galberding | // lf.setStrategie(LineFollowStrategie::MIDDLE);
|
| 871 | af93a91c | galberding | for(int s=0; s < steps; s++){ |
| 872 | 1b3adcdd | galberding | |
| 873 | checkWhite = lf.followLine(rpmSpeed); |
||
| 874 | 22b85da1 | galberding | // chprintf(chp,"S:%d,",s);
|
| 875 | 1b3adcdd | galberding | // if(global.threshWhite)
|
| 876 | // if(s < it_switch){
|
||
| 877 | // lf.setStrategie(LineFollowStrategie::EDGE_LEFT);
|
||
| 878 | // checkWhite = lf.followLine(rpmSpeed);
|
||
| 879 | // }else{
|
||
| 880 | // lf.setStrategie(LineFollowStrategie::EDGE_RIGHT);
|
||
| 881 | // checkWhite = lf.followLine(rpmSpeed);
|
||
| 882 | // }
|
||
| 883 | 22b85da1 | galberding | if(checkWhite){
|
| 884 | 1b3adcdd | galberding | global.motorcontrol.setTargetRPM(0,0); |
| 885 | 22b85da1 | galberding | for(led=0; led<8; led++){ |
| 886 | global.robot.setLightColor(led, Color(Color::RED)); |
||
| 887 | } |
||
| 888 | }else{
|
||
| 889 | global.motorcontrol.setTargetRPM(rpmSpeed[constants::DiWheelDrive::LEFT_WHEEL] * 1000000, rpmSpeed[constants::DiWheelDrive::RIGHT_WHEEL] * 1000000); |
||
| 890 | } |
||
| 891 | |||
| 892 | |||
| 893 | af93a91c | galberding | BaseThread::sleep(CAN::UPDATE_PERIOD); |
| 894 | } |
||
| 895 | 22b85da1 | galberding | |
| 896 | af93a91c | galberding | global.motorcontrol.setTargetRPM(0,0); |
| 897 | } |
||
| 898 | |||
| 899 | |||
| 900 | 1b3adcdd | galberding | void followLine(BaseSequentialStream *chp, int argc, char *argv[]){ |
| 901 | int steps = 1000; |
||
| 902 | 88afb834 | galberding | int speed = 0; |
| 903 | 1b3adcdd | galberding | int strategy = 0; |
| 904 | int led = 0; |
||
| 905 | int checkWhite = 0; |
||
| 906 | int rpmSpeed[2] = {0}; |
||
| 907 | LineFollow lf(&global); |
||
| 908 | 88afb834 | galberding | if (argc == 1){ |
| 909 | chprintf(chp, "%i steps \n", atoi(argv[0])); |
||
| 910 | steps = atoi(argv[0]);
|
||
| 911 | 1b3adcdd | galberding | }else if (argc == 2){ |
| 912 | steps = atoi(argv[0]);
|
||
| 913 | speed = atoi(argv[1]);
|
||
| 914 | }else if (argc == 3){ |
||
| 915 | steps = atoi(argv[0]);
|
||
| 916 | speed = atoi(argv[1]);
|
||
| 917 | strategy = atoi(argv[2]);
|
||
| 918 | }else{
|
||
| 919 | chprintf(chp, "Use: followLine <steps> <speed> <strategy>\n");
|
||
| 920 | return;
|
||
| 921 | } |
||
| 922 | global.forwardSpeed = speed; |
||
| 923 | switch (strategy)
|
||
| 924 | {
|
||
| 925 | case 0: |
||
| 926 | lf.setStrategy(amiro::LineFollowStrategy::EDGE_RIGHT); |
||
| 927 | break;
|
||
| 928 | case 1: |
||
| 929 | lf.setStrategy(amiro::LineFollowStrategy::EDGE_LEFT); |
||
| 930 | break;
|
||
| 931 | case 2: |
||
| 932 | lf.setStrategy(amiro::LineFollowStrategy::FUZZY); |
||
| 933 | break;
|
||
| 934 | default:
|
||
| 935 | break;
|
||
| 936 | 88afb834 | galberding | } |
| 937 | |||
| 938 | |||
| 939 | 1b3adcdd | galberding | for(int s=0; s < steps; s++){ |
| 940 | |||
| 941 | checkWhite = lf.followLine(rpmSpeed); |
||
| 942 | if(checkWhite){
|
||
| 943 | global.motorcontrol.setTargetRPM(0,0); |
||
| 944 | for(led=0; led<8; led++){ |
||
| 945 | global.robot.setLightColor(led, Color(Color::RED)); |
||
| 946 | } |
||
| 947 | }else{
|
||
| 948 | global.motorcontrol.setTargetRPM(rpmSpeed[constants::DiWheelDrive::LEFT_WHEEL] * 1000000, rpmSpeed[constants::DiWheelDrive::RIGHT_WHEEL] * 1000000); |
||
| 949 | } |
||
| 950 | |||
| 951 | BaseThread::sleep(CAN::UPDATE_PERIOD); |
||
| 952 | 88afb834 | galberding | } |
| 953 | 1b3adcdd | galberding | |
| 954 | 88afb834 | galberding | global.motorcontrol.setTargetRPM(0,0); |
| 955 | } |
||
| 956 | |||
| 957 | 1b3adcdd | galberding | |
| 958 | 88afb834 | galberding | void printMove(BaseSequentialStream *chp, int argc, char *argv[]){ |
| 959 | |||
| 960 | for (int j=0; j<global.sensSamples;j++){ |
||
| 961 | 22b85da1 | galberding | chprintf(chp,"FL:%d,FR:%d,Delta:%d,Error:%d\n",global.senseRec[j].FL, global.senseRec[j].FR, global.senseRec[j].delta, global.senseRec[j].error);
|
| 962 | 88afb834 | galberding | } |
| 963 | 22b85da1 | galberding | chprintf(chp,"MaxDist: FL:%d,FR:%d,Delta:%d,Error:%d\n",global.maxDist.FL, global.maxDist.FR, global.maxDist.delta, global.maxDist.error);
|
| 964 | |||
| 965 | 88afb834 | galberding | |
| 966 | } |
||
| 967 | bfffb0bd | galberding | void freeGains(BaseSequentialStream *chp, int argc, char *argv[]){ |
| 968 | if (global.resetProtect){
|
||
| 969 | global.motorcontrol.getGains(&global.motorConfigGains); |
||
| 970 | global.resetProtect = 0;
|
||
| 971 | } |
||
| 972 | |||
| 973 | global.motorcontrol.setGains(&global.stopGains); |
||
| 974 | } |
||
| 975 | |||
| 976 | |||
| 977 | void setGains(BaseSequentialStream *chp, int argc, char *argv[]){ |
||
| 978 | if(!global.resetProtect){
|
||
| 979 | global.motorcontrol.setGains(&global.motorConfigGains); |
||
| 980 | global.resetProtect = 1;
|
||
| 981 | } |
||
| 982 | } |
||
| 983 | void motorToggle(BaseSequentialStream *chp, int argc, char *argv[]){ |
||
| 984 | global.odometry.resetPosition(); |
||
| 985 | global.motorcontrol.toggleMotorEnable(); |
||
| 986 | } |
||
| 987 | 88afb834 | galberding | |
| 988 | |||
| 989 | bfffb0bd | galberding | void rotate(BaseSequentialStream *chp, int argc, char *argv[]){ |
| 990 | int steps = 1000; |
||
| 991 | int speed = 0; |
||
| 992 | int strategy = 0; |
||
| 993 | int led = 0; |
||
| 994 | int checkWhite = 0; |
||
| 995 | int rpmSpeed[2] = {0}; |
||
| 996 | LineFollow lf(&global); |
||
| 997 | if (argc == 1){ |
||
| 998 | chprintf(chp, "%i steps \n", atoi(argv[0])); |
||
| 999 | speed = atoi(argv[0]);
|
||
| 1000 | }else if (argc == 2){ |
||
| 1001 | speed = atoi(argv[0]);
|
||
| 1002 | steps = atoi(argv[1]);
|
||
| 1003 | }else{
|
||
| 1004 | chprintf(chp, "Use: rotate <speed> <steps>\n");
|
||
| 1005 | return;
|
||
| 1006 | } |
||
| 1007 | chprintf((BaseSequentialStream*)&global.sercanmux1, "Recodring starts in five seconds...\n");
|
||
| 1008 | BaseThread::sleep(MS2ST(5000));
|
||
| 1009 | // global.forwardSpeed = speed;
|
||
| 1010 | // rpmSpeed[0] = -speed;
|
||
| 1011 | // rpmSpeed[1] = speed;
|
||
| 1012 | // global.motorcontrol.setTargetRPM(rpmSpeed[constants::DiWheelDrive::LEFT_WHEEL] * 1000000, rpmSpeed[constants::DiWheelDrive::RIGHT_WHEEL] * 1000000);
|
||
| 1013 | // for(int s=0; s < steps; s++){
|
||
| 1014 | // BaseThread::sleep(CAN::UPDATE_PERIOD);
|
||
| 1015 | // }
|
||
| 1016 | global.odometry.resetPosition(); |
||
| 1017 | global.startPos = global.odometry.getPosition(); |
||
| 1018 | global.distcontrol.setTargetPosition(0, 3141592, 5000); |
||
| 1019 | BaseThread::sleep(MS2ST(11000));
|
||
| 1020 | global.endPos = global.odometry.getPosition(); |
||
| 1021 | // global.motorcontrol.setTargetRPM(0,0);
|
||
| 1022 | } |
||
| 1023 | |||
| 1024 | void setSpeed(int (&rpmSpeed)[2]){ |
||
| 1025 | global.motorcontrol.setTargetRPM(rpmSpeed[constants::DiWheelDrive::LEFT_WHEEL] * 1000000, rpmSpeed[constants::DiWheelDrive::RIGHT_WHEEL] * 1000000); |
||
| 1026 | } |
||
| 1027 | |||
| 1028 | void followAndRotate(BaseSequentialStream *chp, int argc, char *argv[]){ |
||
| 1029 | int steps = 10000; |
||
| 1030 | int speed = 0; |
||
| 1031 | int strategy = 0; |
||
| 1032 | int led = 0; |
||
| 1033 | int checkWhite = 0; |
||
| 1034 | int rpmSpeed[2] = {0}; |
||
| 1035 | int proxyWheelThresh = 13000; |
||
| 1036 | LineFollow lf(&global); |
||
| 1037 | if (argc == 1){ |
||
| 1038 | chprintf(chp, "%i steps \n", atoi(argv[0])); |
||
| 1039 | speed = atoi(argv[0]);
|
||
| 1040 | }else if (argc == 2){ |
||
| 1041 | speed = atoi(argv[0]);
|
||
| 1042 | steps = atoi(argv[1]);
|
||
| 1043 | }else{
|
||
| 1044 | chprintf(chp, "Use: rotate <speed> <steps>\n");
|
||
| 1045 | return;
|
||
| 1046 | } |
||
| 1047 | chprintf((BaseSequentialStream*)&global.sercanmux1, "Recodring starts in five seconds...\n");
|
||
| 1048 | BaseThread::sleep(MS2ST(5000));
|
||
| 1049 | global.forwardSpeed = speed; |
||
| 1050 | |||
| 1051 | // rpmSpeed[0] = -speed;
|
||
| 1052 | // rpmSpeed[1] = speed;
|
||
| 1053 | setSpeed(rpmSpeed); |
||
| 1054 | // lf.setStrategy(LineFollowStrategy::DOCKING);
|
||
| 1055 | for(int s=0; s < steps; s++){ |
||
| 1056 | |||
| 1057 | int WL = global.vcnl4020[constants::DiWheelDrive::PROX_WHEEL_LEFT].getProximityScaledWoOffset();
|
||
| 1058 | int WR = global.vcnl4020[constants::DiWheelDrive::PROX_WHEEL_LEFT].getProximityScaledWoOffset();
|
||
| 1059 | if ((WL+WR) < proxyWheelThresh){
|
||
| 1060 | chprintf((BaseSequentialStream*)&global.sercanmux1, "Hit Break!\n");
|
||
| 1061 | if(lf.getStrategy() == LineFollowStrategy::DOCKING){
|
||
| 1062 | break;
|
||
| 1063 | }else{
|
||
| 1064 | global.motorcontrol.setTargetRPM(0,0); |
||
| 1065 | BaseThread::sleep(1000);
|
||
| 1066 | global.distcontrol.setTargetPosition(0, 3141592, 10000); |
||
| 1067 | BaseThread::sleep(10000);
|
||
| 1068 | lf.setStrategy(LineFollowStrategy::EDGE_LEFT); |
||
| 1069 | for (int correction=0; correction<300; correction++){ |
||
| 1070 | checkWhite = lf.followLine(rpmSpeed); |
||
| 1071 | setSpeed(rpmSpeed); |
||
| 1072 | BaseThread::sleep(CAN::UPDATE_PERIOD); |
||
| 1073 | } |
||
| 1074 | // break;
|
||
| 1075 | lf.setStrategy(LineFollowStrategy::DOCKING); |
||
| 1076 | |||
| 1077 | } |
||
| 1078 | } |
||
| 1079 | checkWhite = lf.followLine(rpmSpeed); |
||
| 1080 | setSpeed(rpmSpeed); |
||
| 1081 | BaseThread::sleep(CAN::UPDATE_PERIOD); |
||
| 1082 | } |
||
| 1083 | |||
| 1084 | global.motorcontrol.setTargetRPM(0,0); |
||
| 1085 | global.odometry.resetPosition(); |
||
| 1086 | global.startPos = global.odometry.getPosition(); |
||
| 1087 | global.motorcontrol.toggleMotorEnable(); |
||
| 1088 | BaseThread::sleep(3000);
|
||
| 1089 | global.endPos = global.odometry.getPosition(); |
||
| 1090 | global.motorcontrol.toggleMotorEnable(); |
||
| 1091 | } |
||
| 1092 | |||
| 1093 | |||
| 1094 | void getAccel(BaseSequentialStream *chp, int argc, char *argv[]){ |
||
| 1095 | int steps = 0; |
||
| 1096 | // global.motorcontrol.getGains(&global.motorConfigGains);
|
||
| 1097 | // global.motorcontrol.setGains(&global.stopGains);
|
||
| 1098 | int16_t time = 10000;
|
||
| 1099 | int32_t angle = 3141592;
|
||
| 1100 | int32_t distance = 0;
|
||
| 1101 | if (argc == 1){ |
||
| 1102 | chprintf(chp, "%i steps \n", atoi(argv[0])); |
||
| 1103 | steps = atoi(argv[0]);
|
||
| 1104 | } |
||
| 1105 | else if(argc == 3){ |
||
| 1106 | distance = atoi(argv[0]);
|
||
| 1107 | angle = atoi(argv[0]);
|
||
| 1108 | time = atoi(argv[0]);
|
||
| 1109 | }else{
|
||
| 1110 | chprintf(chp, "Use: accel <steps>\n");
|
||
| 1111 | return;
|
||
| 1112 | } |
||
| 1113 | global.distcontrol.setTargetPosition(distance, angle, time); |
||
| 1114 | |||
| 1115 | for(int i=0; i<steps; i++){ |
||
| 1116 | int16_t Z = global.lis331dlh.getAccelerationForce(LIS331DLH::AXIS_Z); |
||
| 1117 | int16_t X = global.lis331dlh.getAccelerationForce(LIS331DLH::AXIS_X); |
||
| 1118 | int16_t Y = global.lis331dlh.getAccelerationForce(LIS331DLH::AXIS_Y); |
||
| 1119 | types::position pos = global.odometry.getPosition(); |
||
| 1120 | // chprintf((BaseSequentialStream*)&global.sercanmux1, "Axis X: %d, Y: %d, Z: %d\n", X, Y, Z);
|
||
| 1121 | chprintf((BaseSequentialStream*)&global.sercanmux1, "Position X: %d, Y: %d, Rotation X: %d, Y: %d, Z: %d, Angle: %d\n", pos.x, pos.y, pos.f_x, pos.f_y, pos.f_z, global.distcontrol.getCurrentTargetAngle());
|
||
| 1122 | // chprintf((BaseSequentialStream*)&global.sercanmux1, "Position X: %d, Y: %d, Z: %d\n", pos.f_x, pos.f_y, pos.f_z);
|
||
| 1123 | BaseThread::sleep(CAN::UPDATE_PERIOD); |
||
| 1124 | } |
||
| 1125 | |||
| 1126 | // global.motorcontrol.setGains(&global.motorConfigGains);
|
||
| 1127 | } |
||
| 1128 | |||
| 1129 | void getPosition(BaseSequentialStream *chp, int argc, char *argv[]){ |
||
| 1130 | types::position pos = global.odometry.getPosition(); |
||
| 1131 | chprintf(chp, "Start: Position X: %d, Y: %d, Rotation X: %d, Y: %d, Z: %d\n", global.startPos.x, global.startPos.y, global.startPos.f_x, global.startPos.f_y, global.startPos.f_z);
|
||
| 1132 | chprintf(chp, "End: Position X: %d, Y: %d, Rotation X: %d, Y: %d, Z: %d\n", global.endPos.x, global.endPos.y, global.endPos.f_x, global.endPos.f_y, global.endPos.f_z);
|
||
| 1133 | } |
||
| 1134 | |||
| 1135 | 58fe0e0b | Thomas Schöpping | static const ShellCommand commands[] = { |
| 1136 | {"shutdown", shellRequestShutdown},
|
||
| 1137 | {"wakeup", shellRequestWakeup},
|
||
| 1138 | {"check", shellRequestCheck},
|
||
| 1139 | {"reset_memory", shellRequestResetMemory},
|
||
| 1140 | {"get_board_id", shellRequestGetBoardId},
|
||
| 1141 | {"set_board_id", shellRequestSetBoardId},
|
||
| 1142 | {"get_memory_data", shellRequestGetMemoryData},
|
||
| 1143 | {"get_vcnl", shellRequestGetVcnl},
|
||
| 1144 | {"calib_vcnl_offset", shellRequestCalib},
|
||
| 1145 | {"set_vcnl_offset", shellRequestSetVcnlOffset},
|
||
| 1146 | {"reset_vcnl_offset", shellRequestResetVcnlOffset},
|
||
| 1147 | {"get_vcnl_offset", shellRequestGetVcnlOffset},
|
||
| 1148 | {"reset_Ed_Eb", shellRequestResetCalibrationConstants},
|
||
| 1149 | {"get_Ed_Eb", shellRequestGetCalibrationConstants},
|
||
| 1150 | {"set_Ed_Eb", shellRequestSetCalibrationConstants},
|
||
| 1151 | {"get_robot_id", shellRequestGetRobotId},
|
||
| 1152 | {"get_system_load", shellRequestGetSystemLoad},
|
||
| 1153 | {"set_lights", shellRequestSetLights},
|
||
| 1154 | {"shell_board", shellSwitchBoardCmd},
|
||
| 1155 | {"get_bootloader_info", shellRequestGetBootloaderInfo},
|
||
| 1156 | {"motor_drive", shellRequestMotorDrive},
|
||
| 1157 | {"motor_stop", shellRequestMotorStop},
|
||
| 1158 | {"motor_calibrate", shellRequestMotorCalibrate},
|
||
| 1159 | {"motor_getGains", shellRequestMotorGetGains},
|
||
| 1160 | bfffb0bd | galberding | {"motor_deactivate", freeGains},
|
| 1161 | {"motor_activate", setGains},
|
||
| 1162 | ff7ad65b | Thomas Schöpping | {"motor_resetGains", shellRequestMotorResetGains},
|
| 1163 | bfffb0bd | galberding | {"motorToggle", motorToggle},
|
| 1164 | 12463563 | galberding | {"dev_proxi_sensor_data", proxySensorData},
|
| 1165 | af93a91c | galberding | {"dev_ziegler2", zieglerMeth2},
|
| 1166 | // TODO: Stop user process from execution to finish/force calibration before anything starts
|
||
| 1167 | {"calibrate_line", calibrateLineSensores},
|
||
| 1168 | 1b3adcdd | galberding | // {"record_move", recordMove},
|
| 1169 | 88afb834 | galberding | {"print_record", printMove},
|
| 1170 | 22b85da1 | galberding | {"setRecord", setRecord},
|
| 1171 | 1b3adcdd | galberding | {"followLine", followLine},
|
| 1172 | bfffb0bd | galberding | {"rotate", rotate},
|
| 1173 | {"followRotate", followAndRotate},
|
||
| 1174 | {"accel", getAccel},
|
||
| 1175 | {"getPos", getPosition},
|
||
| 1176 | 58fe0e0b | Thomas Schöpping | {NULL, NULL}
|
| 1177 | }; |
||
| 1178 | |||
| 1179 | static const ShellConfig shell_cfg1 = { |
||
| 1180 | (BaseSequentialStream *) &global.sercanmux1, |
||
| 1181 | commands |
||
| 1182 | }; |
||
| 1183 | |||
| 1184 | void initPowermonitor(INA219::Driver &ina219, const float shuntResistance_O, const float maxExpectedCurrent_A, const uint16_t currentLsb_uA) |
||
| 1185 | {
|
||
| 1186 | INA219::CalibData calibData; |
||
| 1187 | INA219::InitData initData; |
||
| 1188 | |||
| 1189 | calibData.input.configuration.content.brng = INA219::Configuration::BRNG_16V; |
||
| 1190 | calibData.input.configuration.content.pg = INA219::Configuration::PGA_40mV; |
||
| 1191 | calibData.input.configuration.content.badc = INA219::Configuration::ADC_68100us; |
||
| 1192 | calibData.input.configuration.content.sadc = INA219::Configuration::ADC_68100us; |
||
| 1193 | calibData.input.configuration.content.mode = INA219::Configuration::MODE_ShuntBus_Continuous; |
||
| 1194 | calibData.input.shunt_resistance_O = shuntResistance_O; |
||
| 1195 | calibData.input.max_expected_current_A = maxExpectedCurrent_A; |
||
| 1196 | calibData.input.current_lsb_uA = currentLsb_uA; |
||
| 1197 | if (ina219.calibration(&calibData) != BaseSensor<>::SUCCESS)
|
||
| 1198 | {
|
||
| 1199 | chprintf((BaseSequentialStream*)&SD1, "WARNING: calibration of INA219 failed.\n");
|
||
| 1200 | } |
||
| 1201 | |||
| 1202 | initData.configuration.value = calibData.input.configuration.value; |
||
| 1203 | initData.calibration = calibData.output.calibration_value; |
||
| 1204 | initData.current_lsb_uA = calibData.output.current_lsb_uA; |
||
| 1205 | if (ina219.init(&initData) != BaseSensor<>::SUCCESS)
|
||
| 1206 | {
|
||
| 1207 | chprintf((BaseSequentialStream*)&SD1, "WARNING: initialization of INA219 failed.\n");
|
||
| 1208 | } |
||
| 1209 | |||
| 1210 | if (calibData.input.current_lsb_uA != initData.current_lsb_uA)
|
||
| 1211 | {
|
||
| 1212 | chprintf((BaseSequentialStream*)&SD1, "NOTE: LSB for current measurement was limited when initializing INA219 (%u -> %u)", calibData.input.current_lsb_uA, initData.current_lsb_uA);
|
||
| 1213 | } |
||
| 1214 | |||
| 1215 | return;
|
||
| 1216 | } |
||
| 1217 | |||
| 1218 | /*
|
||
| 1219 | * Application entry point.
|
||
| 1220 | */
|
||
| 1221 | int main(void) { |
||
| 1222 | |||
| 1223 | // int16_t accel;
|
||
| 1224 | Thread *shelltp = NULL;
|
||
| 1225 | |||
| 1226 | /*
|
||
| 1227 | * System initializations.
|
||
| 1228 | * - HAL initialization, this also initializes the configured device drivers
|
||
| 1229 | * and performs the board-specific initializations.
|
||
| 1230 | * - Kernel initialization, the main() function becomes a thread and the
|
||
| 1231 | * RTOS is active.
|
||
| 1232 | */
|
||
| 1233 | halInit(); |
||
| 1234 | qeiInit(); |
||
| 1235 | System::init(); |
||
| 1236 | |||
| 1237 | // boardWakeup();
|
||
| 1238 | // boardWriteIoPower(1);
|
||
| 1239 | |||
| 1240 | /*
|
||
| 1241 | * Activates the serial driver 2 using the driver default configuration.
|
||
| 1242 | */
|
||
| 1243 | sdStart(&SD1, &global.sd1_config); |
||
| 1244 | |||
| 1245 | chprintf((BaseSequentialStream*) &SD1, "\n");
|
||
| 1246 | chprintf((BaseSequentialStream*) &SD1, BOARD_NAME " " BOARD_VERSION "\n"); |
||
| 1247 | 10687985 | Thomas Schöpping | switch (*((uint32_t*)(BL_CALLBACK_TABLE_ADDR))) {
|
| 1248 | case (('A'<<24) | ('-'<<16) | ('B'<<8) | ('L'<<0)): |
||
| 1249 | chprintf((BaseSequentialStream*) &SD1, "Bootloader %u.%u.%u\n",
|
||
| 1250 | ((blVersion_t*)(BL_CALLBACK_TABLE_ADDR + (1*4)))->major, |
||
| 1251 | ((blVersion_t*)(BL_CALLBACK_TABLE_ADDR + (1*4)))->minor, |
||
| 1252 | ((blVersion_t*)(BL_CALLBACK_TABLE_ADDR + (1*4)))->patch); |
||
| 1253 | break;
|
||
| 1254 | |||
| 1255 | case BL_MAGIC_NUMBER:
|
||
| 1256 | chprintf((BaseSequentialStream*) &SD1, "Bootloader %u.%u.%u\n",
|
||
| 1257 | *((uint32_t*)(BL_CALLBACK_TABLE_ADDR + (1*4))), |
||
| 1258 | *((uint32_t*)(BL_CALLBACK_TABLE_ADDR + (1*4))), |
||
| 1259 | *((uint32_t*)(BL_CALLBACK_TABLE_ADDR + (1*4)))); |
||
| 1260 | break;
|
||
| 1261 | |||
| 1262 | default:
|
||
| 1263 | chprintf((BaseSequentialStream*) &SD1, "Bootloader incompatible\n");
|
||
| 1264 | break;
|
||
| 1265 | 58fe0e0b | Thomas Schöpping | } |
| 1266 | chprintf((BaseSequentialStream*) &SD1, "ChibiOS " CH_KERNEL_VERSION "\n"); |
||
| 1267 | // make sure that the info text is completetly printed
|
||
| 1268 | BaseThread::sleep(10);
|
||
| 1269 | |||
| 1270 | extStart(&EXTD1, &extcfg); |
||
| 1271 | |||
| 1272 | /*
|
||
| 1273 | * Wait for a certain amount of time, so that the PowerBoard can activate
|
||
| 1274 | * the IO voltages for the I2C Bus
|
||
| 1275 | */
|
||
| 1276 | BaseThread::sleep(MS2ST(2000));
|
||
| 1277 | |||
| 1278 | b4885314 | Thomas Schöpping | boardClearI2CBus(GPIOB_COMPASS_SCL, GPIOB_COMPASS_SDA); |
| 1279 | boardClearI2CBus(GPIOB_IR_SCL, GPIOB_IR_SDA); |
||
| 1280 | 58fe0e0b | Thomas Schöpping | |
| 1281 | global.HW_I2C1.start(&global.i2c1_config); |
||
| 1282 | global.HW_I2C2.start(&global.i2c2_config); |
||
| 1283 | |||
| 1284 | global.memory.init(); |
||
| 1285 | |||
| 1286 | uint8_t i = 0;
|
||
| 1287 | if (global.memory.getBoardId(&i) == fileSystemIo::FileSystemIoBase::OK) {
|
||
| 1288 | chprintf((BaseSequentialStream*) &SD1, "Board ID: %u\n", i);
|
||
| 1289 | } else {
|
||
| 1290 | chprintf((BaseSequentialStream*) &SD1, "Error reading board ID\n");
|
||
| 1291 | } |
||
| 1292 | chprintf((BaseSequentialStream*) &SD1, "\n");
|
||
| 1293 | |||
| 1294 | initPowermonitor(global.ina219, 0.1f, 0.075f, 10); |
||
| 1295 | |||
| 1296 | for (i = 0x00u; i < global.vcnl4020.size(); i++) { |
||
| 1297 | uint16_t buffer; |
||
| 1298 | global.memory.getVcnl4020Offset(&buffer,i); |
||
| 1299 | global.vcnl4020[i].setProximityOffset(buffer); |
||
| 1300 | global.vcnl4020[i].start(NORMALPRIO); |
||
| 1301 | } |
||
| 1302 | |||
| 1303 | global.ina219.start(NORMALPRIO); |
||
| 1304 | |||
| 1305 | global.hmc5883l.start(NORMALPRIO + 8);
|
||
| 1306 | |||
| 1307 | global.increments.start(); // Start the qei driver
|
||
| 1308 | |||
| 1309 | f336542d | Timo Korthals | // Start the three axes gyroscope
|
| 1310 | global.l3g4200d.configure(&global.gyro_run_config); |
||
| 1311 | global.l3g4200d.start(NORMALPRIO+5);
|
||
| 1312 | |||
| 1313 | 58fe0e0b | Thomas Schöpping | global.odometry.start(NORMALPRIO + 20);
|
| 1314 | |||
| 1315 | global.robot.start(HIGHPRIO - 1);
|
||
| 1316 | |||
| 1317 | global.motorcontrol.start(NORMALPRIO + 7);
|
||
| 1318 | |||
| 1319 | global.distcontrol.start(NORMALPRIO + 9);
|
||
| 1320 | |||
| 1321 | // Set target velocity
|
||
| 1322 | types::kinematic velocity; |
||
| 1323 | velocity.x = 0; // E.g. "100*1e3" equals "10 cm/s" |
||
| 1324 | velocity.w_z = 0; // E.g. "2*1e6" equals "2 rad/s" |
||
| 1325 | global.motorcontrol.setTargetSpeed(velocity); |
||
| 1326 | |||
| 1327 | // Start the three axes linear accelerometer
|
||
| 1328 | global.lis331dlh.configure(&global.accel_run_config); |
||
| 1329 | global.lis331dlh.start(NORMALPRIO+4);
|
||
| 1330 | |||
| 1331 | // Start the user thread
|
||
| 1332 | global.userThread.start(NORMALPRIO); |
||
| 1333 | |||
| 1334 | /* let the SYS_SYNC_N pin go, to signal that the initialization of the module is done */
|
||
| 1335 | palWritePad(GPIOC, GPIOC_SYS_INT_N, PAL_HIGH); |
||
| 1336 | |||
| 1337 | /* wait until all modules are done */
|
||
| 1338 | while (palReadPad(GPIOC, GPIOC_SYS_INT_N) == PAL_LOW) {
|
||
| 1339 | continue;
|
||
| 1340 | } |
||
| 1341 | |||
| 1342 | while (true) { |
||
| 1343 | |||
| 1344 | if (!shelltp)
|
||
| 1345 | shelltp = shellCreate(&shell_cfg1, THD_WA_SIZE(1024), NORMALPRIO);
|
||
| 1346 | else if (chThdTerminated(shelltp)) { |
||
| 1347 | chThdRelease(shelltp); /* Recovers memory of the previous shell. */
|
||
| 1348 | shelltp = NULL; /* Triggers spawning of a new shell. */ |
||
| 1349 | } |
||
| 1350 | |||
| 1351 | // Let the LED just blink as an alive signal
|
||
| 1352 | boardWriteLed(1);
|
||
| 1353 | BaseThread::sleep(MS2ST(250));
|
||
| 1354 | boardWriteLed(0);
|
||
| 1355 | BaseThread::sleep(MS2ST(250));
|
||
| 1356 | |||
| 1357 | if (shutdown_now != SHUTDOWN_NONE) {
|
||
| 1358 | 10687985 | Thomas Schöpping | if ((*((uint32_t*)(BL_CALLBACK_TABLE_ADDR)) != (('A'<<24) | ('-'<<16) | ('B'<<8) | ('L'<<0))) && (*((uint32_t*)(BL_CALLBACK_TABLE_ADDR)) != BL_MAGIC_NUMBER)) { |
| 1359 | 58fe0e0b | Thomas Schöpping | chprintf((BaseSequentialStream*) &SD1, "ERROR: unable to shut down (bootloader deprecated).\n");
|
| 1360 | shutdown_now = SHUTDOWN_NONE; |
||
| 1361 | } else {
|
||
| 1362 | uint32_t blCallbackPtrAddr = BL_CALLBACK_TABLE_ADDR; |
||
| 1363 | 10687985 | Thomas Schöpping | // handle bootloader version 0.2.x
|
| 1364 | if ((*((uint32_t*)(BL_CALLBACK_TABLE_ADDR)) == BL_MAGIC_NUMBER) &&
|
||
| 1365 | (*((uint32_t*)(BL_CALLBACK_TABLE_ADDR + (1*4))) == 0 && *((uint32_t*)(BL_CALLBACK_TABLE_ADDR + (2*4))) == 2)) { |
||
| 1366 | 58fe0e0b | Thomas Schöpping | switch (shutdown_now) {
|
| 1367 | case SHUTDOWN_TRANSPORTATION:
|
||
| 1368 | blCallbackPtrAddr += 6 * 4; |
||
| 1369 | break;
|
||
| 1370 | case SHUTDOWN_DEEPSLEEP:
|
||
| 1371 | blCallbackPtrAddr += 5 * 4; |
||
| 1372 | break;
|
||
| 1373 | case SHUTDOWN_HIBERNATE:
|
||
| 1374 | blCallbackPtrAddr += 4 * 4; |
||
| 1375 | break;
|
||
| 1376 | case SHUTDOWN_HANDLE_REQUEST:
|
||
| 1377 | case SHUTDOWN_RESTART:
|
||
| 1378 | blCallbackPtrAddr += 10 * 4; |
||
| 1379 | break;
|
||
| 1380 | default:
|
||
| 1381 | blCallbackPtrAddr = 0;
|
||
| 1382 | break;
|
||
| 1383 | } |
||
| 1384 | 10687985 | Thomas Schöpping | } |
| 1385 | // handle bootloader version 0.3.x
|
||
| 1386 | else if ((*((uint32_t*)(BL_CALLBACK_TABLE_ADDR)) == BL_MAGIC_NUMBER) && |
||
| 1387 | (*((uint32_t*)(BL_CALLBACK_TABLE_ADDR + (1*4))) == 0 && *((uint32_t*)(BL_CALLBACK_TABLE_ADDR + (2*4))) == 3)) { |
||
| 1388 | switch (shutdown_now) {
|
||
| 1389 | case SHUTDOWN_TRANSPORTATION:
|
||
| 1390 | blCallbackPtrAddr += 6 * 4; |
||
| 1391 | break;
|
||
| 1392 | case SHUTDOWN_DEEPSLEEP:
|
||
| 1393 | blCallbackPtrAddr += 5 * 4; |
||
| 1394 | break;
|
||
| 1395 | case SHUTDOWN_HIBERNATE:
|
||
| 1396 | blCallbackPtrAddr += 4 * 4; |
||
| 1397 | break;
|
||
| 1398 | case SHUTDOWN_RESTART:
|
||
| 1399 | blCallbackPtrAddr += 7 * 4; |
||
| 1400 | break;
|
||
| 1401 | case SHUTDOWN_HANDLE_REQUEST:
|
||
| 1402 | blCallbackPtrAddr += 8 * 4; |
||
| 1403 | break;
|
||
| 1404 | default:
|
||
| 1405 | blCallbackPtrAddr = 0;
|
||
| 1406 | break;
|
||
| 1407 | } |
||
| 1408 | } |
||
| 1409 | 5b1b6715 | Thomas Schöpping | // handle bootloader version 1.0.x and 1.1.x
|
| 1410 | 10687985 | Thomas Schöpping | else if ((*((uint32_t*)(BL_CALLBACK_TABLE_ADDR)) == (('A'<<24) | ('-'<<16) | ('B'<<8) | ('L'<<0))) && |
| 1411 | 5b1b6715 | Thomas Schöpping | ((blVersion_t*)(BL_CALLBACK_TABLE_ADDR + (1*4)))->major == 1 && (((blVersion_t*)(BL_CALLBACK_TABLE_ADDR + (1*4)))->minor == 0 || ((blVersion_t*)(BL_CALLBACK_TABLE_ADDR + (1*4)))->minor == 1)) { |
| 1412 | 58fe0e0b | Thomas Schöpping | switch (shutdown_now) {
|
| 1413 | case SHUTDOWN_TRANSPORTATION:
|
||
| 1414 | blCallbackPtrAddr += 6 * 4; |
||
| 1415 | break;
|
||
| 1416 | case SHUTDOWN_DEEPSLEEP:
|
||
| 1417 | blCallbackPtrAddr += 5 * 4; |
||
| 1418 | break;
|
||
| 1419 | case SHUTDOWN_HIBERNATE:
|
||
| 1420 | blCallbackPtrAddr += 4 * 4; |
||
| 1421 | break;
|
||
| 1422 | case SHUTDOWN_RESTART:
|
||
| 1423 | blCallbackPtrAddr += 7 * 4; |
||
| 1424 | break;
|
||
| 1425 | case SHUTDOWN_HANDLE_REQUEST:
|
||
| 1426 | blCallbackPtrAddr += 8 * 4; |
||
| 1427 | break;
|
||
| 1428 | default:
|
||
| 1429 | blCallbackPtrAddr = 0;
|
||
| 1430 | break;
|
||
| 1431 | } |
||
| 1432 | } |
||
| 1433 | |||
| 1434 | void (*blCallback)(void) = NULL; |
||
| 1435 | 10687985 | Thomas Schöpping | if (blCallbackPtrAddr > BL_CALLBACK_TABLE_ADDR) {
|
| 1436 | 58fe0e0b | Thomas Schöpping | blCallback = (void (*)(void))(*((uint32_t*)blCallbackPtrAddr)); |
| 1437 | |||
| 1438 | if (!blCallback) {
|
||
| 1439 | chprintf((BaseSequentialStream*) &SD1, "ERROR: Requested shutdown not supported.\n");
|
||
| 1440 | shutdown_now = SHUTDOWN_NONE; |
||
| 1441 | } else {
|
||
| 1442 | chprintf((BaseSequentialStream*)&SD1, "initiating shutdown sequence...\n");
|
||
| 1443 | palWritePad(GPIOC, GPIOC_SYS_INT_N, PAL_LOW); |
||
| 1444 | palWritePad(GPIOC, GPIOC_SYS_PD_N, PAL_LOW); |
||
| 1445 | |||
| 1446 | chprintf((BaseSequentialStream*)&SD1, "stopping all threads and periphery...");
|
||
| 1447 | systemShutdown(); |
||
| 1448 | chprintf((BaseSequentialStream*)&SD1, "\tdone\n");
|
||
| 1449 | BaseThread::sleep(MS2ST(10)); // sleep to print everything |
||
| 1450 | |||
| 1451 | blCallback(); |
||
| 1452 | } |
||
| 1453 | |||
| 1454 | } else {
|
||
| 1455 | chprintf((BaseSequentialStream*) &SD1, "ERROR: invalid shutdown requested (%u).\n", shutdown_now);
|
||
| 1456 | shutdown_now = SHUTDOWN_NONE; |
||
| 1457 | } |
||
| 1458 | } |
||
| 1459 | |||
| 1460 | // for (uint8_t i = LIS331DLH::AXIS_X; i <= LIS331DLH::AXIS_Z; i++) {
|
||
| 1461 | // accel = lis331dlh.getAcceleration(i);
|
||
| 1462 | // chprintf((BaseSequentialStream*) &SD1, "%c%04X ", accel < 0 ? '-' : '+', accel < 0 ? -accel : accel);
|
||
| 1463 | // }
|
||
| 1464 | //
|
||
| 1465 | // chprintf((BaseSequentialStream*) &SD1, "\n");
|
||
| 1466 | //
|
||
| 1467 | // // Print out an alive signal
|
||
| 1468 | // chprintf((BaseSequentialStream*) &SD1, ".");
|
||
| 1469 | } |
||
| 1470 | } |
||
| 1471 | |||
| 1472 | return 0; |
||
| 1473 | } |