STM32 firmware for a remotely-controlled stepper motor demo with a mobile interface.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

136 lines
2.2 KiB

#include "main.h"
#include "hw_init.h"
#include "com/datalink.h"
#include "com/debug.h"
#include "com/com_fileio.h"
#include "com/com_iface.h"
#include "bus/event_queue.h"
#include "bus/event_handler.h"
#include "utils/timebase.h"
#include "utils/debounce.h"
#include <math.h>
#include <sbmp.h>
#include "dspin.h"
#include "blinky.h"
// 7.5deg motor -> 48 full steps. We use 128 step mode -> 6144 = full circle
#define STEPS_360 6144
static void poll_subsystems(void);
static void conf_buttons(void);
int main(void)
{
hw_init();
conf_buttons();
banner("*** STM32F105 stepper motor demo ***");
banner_info("(c) Ondrej Hruska, 2016");
banner_info("Katedra mereni K338, CVUT FEL");
// Intro animation
led_blink(LED_SPARE, 200);
delay_ms(100);
led_blink(LED_ERROR, 200);
delay_ms(100);
led_blink(LED_BUSY, 200);
delay_ms(100);
led_toggle(LED_READY);
// Green LED starts flashing...
ms_time_t t = ms_now();
while (1) {
poll_subsystems();
// blink to indicate we're working OK
if (ms_loop_elapsed(&t, 500)) {
led_toggle(LED_READY);
}
}
}
void left_btn_click(void)
{
led_blink(LED_BUSY, 500);
dSPIN_Move(FWD, STEPS_360/4);
}
void right_btn_click(void)
{
led_blink(LED_ERROR, 250);
dSPIN_Move(REV, STEPS_360/4);
}
void dlnk_rx(SBMP_Datagram *dg)
{
(void)dg;
PayloadParser pp = pp_start(dg->payload, dg->length);
switch (dg->type) {
case DG_MOTOR_HOME:
dSPIN_Go_Home();
break;
case DG_MOTOR_GOTO:;
int32_t pos = pp_i32(&pp);
dSPIN_Go_To(pos);
break;
}
}
static void conf_buttons(void)
{
debounce_init(2);
// setup debouncer
debo_init_t debo = {};
debo.debo_time = 10;
debo.invert = true;
// button A
debo.GPIOx = BUTTON_A_Port;
debo.pin = BUTTON_A_Pin;
debo.rising_cb = left_btn_click;
debo_register_pin(&debo);
// Button B
debo.GPIOx = BUTTON_B_Port;
debo.pin = BUTTON_B_Pin;
debo.rising_cb = right_btn_click;
debo_register_pin(&debo);
add_periodic_task(debo_periodic_task, NULL, 10, true);
}
static void poll_subsystems(void)
{
// poll serial buffers (runs callback)
com_poll(debug_iface);
com_poll(data_iface);
// run queued tasks
tq_poll();
// handle queued events
Event evt;
until_timeout(2) { // take 2 ms max
if (eq_take(&evt)) {
run_event_handler(&evt);
} else {
break;
}
}
}