#include "thread.h" #include "usbserial.h" #include "itg3200.h" #include "bma150.h" #include "ak8975.h" #include #include class LEDThread : public BaseThread { public: noreturn_t thread_main() { while (1) { palClearPad(GPIOA, 5); chThdSleepMilliseconds(500); palSetPad(GPIOA, 5); chThdSleepMilliseconds(500); } } }; LEDThread led_thread; class USBThread : public BaseThread { private: typedef enum {W_S, W_N, W_V} w_s_t; public: USBSerial* usbs; uint8_t data[9]; noreturn_t thread_main() { for(int i = 0; i < 9; i++) { data[i] = 0; } w_s_t w_s = W_S; uint8_t w_n = 0; while(1) { size_t buffer = usbs->getc(); if(buffer >= 0 && buffer < 256) { if(w_s == W_S && buffer == 'S') { w_s = W_N; } else if(w_s == W_N && buffer >= '1' && buffer <= '9') { w_s = W_V; w_n = buffer - '1'; } else if(w_s == W_V) { w_s = W_S; data[w_n] = buffer; } else { w_s = W_S; } } } } }; USBThread usb_thread; USBSerial usbs; #include "foo.h" class I2CThread : public BaseThread { public: ITG3200 gyro; BMA150 acc; AK8975 magn; int16_t x, y, z; noreturn_t thread_main() { I2CSensor::enable_bus(); gyro.init(); acc.init(); magn.init(); while (1) { gyro.update(); acc.update(); magn.update(); x = gyro.x; y = gyro.y; z = gyro.z; usbprintf(usbs, "%6d, %6d, %6d\r\n", x, y, z); chThdSleepMilliseconds(100); } } }; I2CThread i2c_thread; void foo(PWMDriver*) { int16_t thrust, pitch, roll, yaw; pitch = roll = 0; uint8_t shift = 8 - (usb_thread.data[8] >> 3); thrust = usb_thread.data[0] * 10; yaw = i2c_thread.z >> shift; pwmEnableChannel(&PWMD2, 0, 1000 + thrust + pitch + roll - yaw); pwmEnableChannel(&PWMD2, 1, 1000 + thrust + pitch - roll + yaw); pwmEnableChannel(&PWMD2, 2, 1000 + thrust - pitch + roll + yaw); pwmEnableChannel(&PWMD2, 3, 1000 + thrust - pitch - roll - yaw); } static PWMConfig pwmcfg = { 1000000, 1000000 / 50, foo, { {PWM_OUTPUT_ACTIVE_HIGH, NULL}, {PWM_OUTPUT_ACTIVE_HIGH, NULL}, {PWM_OUTPUT_ACTIVE_HIGH, NULL}, {PWM_OUTPUT_ACTIVE_HIGH, NULL} }, 0 }; int main(void) { halInit(); chSysInit(); led_thread.start(); usbs.init(); i2c_thread.start(); pwmStart(&PWMD2, &pwmcfg); palSetPadMode(GPIOA, 0, PAL_MODE_STM32_ALTERNATE_PUSHPULL); palSetPadMode(GPIOA, 1, PAL_MODE_STM32_ALTERNATE_PUSHPULL); palSetPadMode(GPIOA, 2, PAL_MODE_STM32_ALTERNATE_PUSHPULL); palSetPadMode(GPIOA, 3, PAL_MODE_STM32_ALTERNATE_PUSHPULL); pwmEnableChannel(&PWMD2, 0, 1000); pwmEnableChannel(&PWMD2, 1, 1000); pwmEnableChannel(&PWMD2, 2, 1000); pwmEnableChannel(&PWMD2, 3, 1000); usb_thread.usbs = &usbs; usb_thread.start(); while (1) { chThdSleepMilliseconds(1000); } }