2022-01-05 16:10:18 +00:00
|
|
|
#include "lfrfid_debug_app_scene_tune.h"
|
|
|
|
#include <furi_hal.h>
|
2021-12-07 12:49:44 +00:00
|
|
|
|
|
|
|
extern COMP_HandleTypeDef hcomp1;
|
|
|
|
|
|
|
|
static void comparator_trigger_callback(void* hcomp, void* comp_ctx) {
|
|
|
|
COMP_HandleTypeDef* _hcomp = static_cast<COMP_HandleTypeDef*>(hcomp);
|
|
|
|
|
|
|
|
if(hcomp == &hcomp1) {
|
|
|
|
hal_gpio_write(&gpio_ext_pa7, HAL_COMP_GetOutputLevel(_hcomp) == COMP_OUTPUT_LEVEL_HIGH);
|
|
|
|
}
|
|
|
|
}
|
2021-06-28 14:42:30 +00:00
|
|
|
|
|
|
|
void LfRfidDebugAppSceneTune::on_enter(LfRfidDebugApp* app, bool need_restore) {
|
|
|
|
app->view_controller.switch_to<LfRfidViewTuneVM>();
|
2021-12-07 12:49:44 +00:00
|
|
|
hal_gpio_init_simple(&gpio_ext_pa7, GpioModeOutputPushPull);
|
|
|
|
|
|
|
|
api_interrupt_add(comparator_trigger_callback, InterruptTypeComparatorTrigger, this);
|
|
|
|
|
|
|
|
hcomp1.Init.InputMinus = COMP_INPUT_MINUS_1_2VREFINT;
|
|
|
|
hcomp1.Init.InputPlus = COMP_INPUT_PLUS_IO1;
|
|
|
|
hcomp1.Init.OutputPol = COMP_OUTPUTPOL_NONINVERTED;
|
|
|
|
hcomp1.Init.Hysteresis = COMP_HYSTERESIS_HIGH;
|
|
|
|
hcomp1.Init.BlankingSrce = COMP_BLANKINGSRC_NONE;
|
|
|
|
hcomp1.Init.Mode = COMP_POWERMODE_MEDIUMSPEED;
|
|
|
|
hcomp1.Init.WindowMode = COMP_WINDOWMODE_DISABLE;
|
|
|
|
hcomp1.Init.TriggerMode = COMP_TRIGGERMODE_IT_RISING_FALLING;
|
|
|
|
if(HAL_COMP_Init(&hcomp1) != HAL_OK) {
|
|
|
|
Error_Handler();
|
|
|
|
}
|
|
|
|
|
|
|
|
HAL_COMP_Start(&hcomp1);
|
2021-06-28 14:42:30 +00:00
|
|
|
|
2021-08-08 18:03:25 +00:00
|
|
|
furi_hal_rfid_pins_read();
|
|
|
|
furi_hal_rfid_tim_read(125000, 0.5);
|
|
|
|
furi_hal_rfid_tim_read_start();
|
2021-06-28 14:42:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool LfRfidDebugAppSceneTune::on_event(LfRfidDebugApp* app, LfRfidDebugApp::Event* event) {
|
|
|
|
bool consumed = false;
|
|
|
|
|
|
|
|
LfRfidViewTuneVM* tune = app->view_controller;
|
|
|
|
|
|
|
|
if(tune->is_dirty()) {
|
2021-08-08 18:03:25 +00:00
|
|
|
furi_hal_rfid_set_read_period(tune->get_ARR());
|
|
|
|
furi_hal_rfid_set_read_pulse(tune->get_CCR());
|
2021-06-28 14:42:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return consumed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LfRfidDebugAppSceneTune::on_exit(LfRfidDebugApp* app) {
|
2021-12-07 12:49:44 +00:00
|
|
|
HAL_COMP_Stop(&hcomp1);
|
|
|
|
api_interrupt_remove(comparator_trigger_callback, InterruptTypeComparatorTrigger);
|
|
|
|
|
|
|
|
hal_gpio_init_simple(&gpio_ext_pa7, GpioModeAnalog);
|
2021-08-08 18:03:25 +00:00
|
|
|
furi_hal_rfid_tim_read_stop();
|
|
|
|
furi_hal_rfid_tim_reset();
|
|
|
|
furi_hal_rfid_pins_reset();
|
2021-06-28 14:42:30 +00:00
|
|
|
}
|