-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
025aeb1
commit 3d6e67c
Showing
2 changed files
with
123 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
/** | ||
* @file blims.cpp | ||
* @author gb486 | ||
* | ||
* @brief BLIMS Functionality | ||
*/ | ||
|
||
#include "blims.hpp" | ||
#include "hardware/pwm.h" | ||
#include "state.hpp" | ||
|
||
void BLIMS::set_motor_position(float position) { | ||
// Position should be between 0-1 | ||
// Should map between -17 to 17 turns (configured in web UI) | ||
|
||
// Map position to PWM duty cycle (typically 1ms to 2ms pulse width) | ||
uint16_t five_percent_duty_cycle = wrap_cycle_count * 0.05; | ||
// ranges between 5% and 10% duty cycle; 3276 ~= 5% duty, 6552 ~= 10% duty | ||
uint16_t duty = (uint16_t)(five_percent_duty_cycle + position * five_percent_duty_cycle); | ||
pwm_set_chan_level(slice_num, pwm_gpio_to_channel(BLIMS_MOTOR), duty); | ||
} | ||
|
||
void BLIMS::pwm_setup() { | ||
// Set up the PWM configuration | ||
gpio_set_function(BLIMS_MOTOR, GPIO_FUNC_PWM); | ||
uint slice_num = pwm_gpio_to_slice_num(BLIMS_MOTOR); | ||
|
||
uint32_t clock = 125000000; // What our pico runs - set by the pico hardware itself | ||
|
||
uint32_t pwm_freq = 50; // desired pwm frequency Hz - what we want to achieve | ||
|
||
uint32_t divider_int = clock / pwm_freq / wrap_cycle_count; // div is important to get the frequency we want as we lose float info here | ||
|
||
uint32_t divider_frac = (clock % (pwm_freq * wrap_cycle_count)) * 16 / (pwm_freq * wrap_cycle_count); // gives us the fractional component of the divider | ||
// Clock divider: slows down pwm to get a certain amount of Hz | ||
// slice num - depends on what pin we're at, we set pin, pin has set slice num | ||
// integer divider - going to be 38 | ||
pwm_set_clkdiv_int_frac(slice_num, divider_int, divider_frac); | ||
pwm_set_wrap(slice_num, wrap_cycle_count); | ||
pwm_set_enabled(slice_num, true); | ||
} | ||
void BLIMS::execute() { | ||
// assume motor starts as neutral | ||
if (run_init_hold && (to_ms_since_boot(get_absolute_time()) - state::flight::hold_start >= constants::initial_hold_threshold)) { | ||
run_init_hold = false; | ||
printf("TEST 2\n\n\n\n\n"); | ||
} | ||
|
||
state::blims::curr_action_duration -= (state::flight::timestamp - curr_time); | ||
curr_time = to_ms_since_boot(get_absolute_time()); | ||
|
||
pwm_setup(); | ||
if (state::blims::curr_action_duration < 0 && !run_init_hold && !brake_alt) { | ||
state::blims::curr_action_index = state::blims::curr_action_index + 1; | ||
if (state::blims::curr_action_index >= 10) { // length calculation - need to fix and get size of action_arr | ||
state::blims::curr_action_index = 0; | ||
printf("TEST 4\n"); | ||
} | ||
printf("Action Duration: %d\n", state::blims::curr_action_duration); | ||
printf("Action Index: %d\n", state::blims::curr_action_index); | ||
state::blims::curr_action_duration = action_arr[state::blims::curr_action_index].duration; | ||
set_motor_position(action_arr[state::blims::curr_action_index].position); | ||
} | ||
// printf("TEST 5\n"); | ||
// check altitude | ||
// if (state::alt::altitude < constants::brake_alt) { | ||
// set_motor_position(BLIMS_MOTOR, constants::neutral_pos); | ||
// brake_alt = true; | ||
// } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/** | ||
* @file blims.hpp | ||
* @author gb486 | ||
* | ||
* @brief BLiMS related definitions | ||
*/ | ||
#ifndef BLIMS_HPP | ||
#define BLIMS_HPP | ||
#include "constants.hpp" | ||
#include "hardware/pwm.h" | ||
#include "pico/stdlib.h" | ||
#include "pins.hpp" | ||
|
||
struct Action { | ||
float position; | ||
uint32_t duration; | ||
}; | ||
|
||
class BLIMS { | ||
public: | ||
void execute(); | ||
Action action_arr[10] = { | ||
{0.6f, constants::turn_hold_threshold}, | ||
{0.5f, constants::neutral_hold_threshold}, | ||
{0.3f, constants::turn_hold_threshold}, | ||
{0.5f, constants::neutral_hold_threshold}, | ||
{0.8f, constants::turn_hold_threshold}, | ||
{0.5f, constants::neutral_hold_threshold}, | ||
{0.1f, constants::turn_hold_threshold}, | ||
{0.5f, constants::neutral_hold_threshold}, | ||
{1.0f, constants::turn_hold_threshold}, | ||
{0.5f, constants::neutral_hold_threshold}, | ||
}; | ||
|
||
private: | ||
// sets position of motor on a 0-1 scale | ||
void set_motor_position(float position); | ||
|
||
// pwm_setup configures the pwm signal | ||
void pwm_setup(); | ||
|
||
// want wrap to be as large as possible, increases the amount of steps so that we have as much control as possible | ||
uint16_t wrap_cycle_count = 65535; | ||
uint32_t curr_time = 0; | ||
uint slice_num = pwm_gpio_to_slice_num(BLIMS_MOTOR); | ||
|
||
// initial hold | ||
bool run_init_hold = true; | ||
// reached braking altitude | ||
bool brake_alt = false; | ||
}; | ||
|
||
#endif |