22a4bac448
* Core: wipe memory after free. RFID,iButton: fix iterator use after invalidation. * Debug: support unix wildcards for register matching in svd, update MCU description file and minify it. * Toolbox: getter for File in FlipperFile. * Makefile: conditional flashing * SubGhz: keeloq_mfcodes encryption tool. * FuriHal: proper IV handling on CBC in crypto. SubGhz: add support for encrypted keeloq keys. Makefile: move formatting to top Makefile. * SubGhz: rename some function names to match naming scheme. * SubGhz: encryption tool, fix windows line endings Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
66 lines
1.8 KiB
C++
66 lines
1.8 KiB
C++
#include "rfid-timer-emulator.h"
|
|
|
|
extern TIM_HandleTypeDef htim1;
|
|
|
|
RfidTimerEmulator::RfidTimerEmulator() {
|
|
}
|
|
|
|
RfidTimerEmulator::~RfidTimerEmulator() {
|
|
std::map<LfrfidKeyType, EncoderGeneric*>::iterator it;
|
|
|
|
for(it = encoders.begin(); it != encoders.end(); ++it) {
|
|
delete it->second;
|
|
}
|
|
|
|
encoders.clear();
|
|
}
|
|
|
|
void RfidTimerEmulator::start(LfrfidKeyType type, const uint8_t* data, uint8_t data_size) {
|
|
if(encoders.count(type)) {
|
|
current_encoder = encoders.find(type)->second;
|
|
|
|
if(data_size >= lfrfid_key_get_type_data_count(type)) {
|
|
current_encoder->init(data, data_size);
|
|
|
|
furi_hal_rfid_tim_emulate(125000);
|
|
furi_hal_rfid_pins_emulate();
|
|
|
|
api_interrupt_add(timer_update_callback, InterruptTypeTimerUpdate, this);
|
|
|
|
furi_hal_rfid_tim_emulate_start();
|
|
}
|
|
} else {
|
|
// not found
|
|
}
|
|
}
|
|
|
|
void RfidTimerEmulator::stop() {
|
|
furi_hal_rfid_tim_emulate_stop();
|
|
api_interrupt_remove(timer_update_callback, InterruptTypeTimerUpdate);
|
|
|
|
furi_hal_rfid_tim_reset();
|
|
furi_hal_rfid_pins_reset();
|
|
}
|
|
|
|
void RfidTimerEmulator::timer_update_callback(void* _hw, void* ctx) {
|
|
RfidTimerEmulator* _this = static_cast<RfidTimerEmulator*>(ctx);
|
|
TIM_HandleTypeDef* hw = static_cast<TIM_HandleTypeDef*>(_hw);
|
|
|
|
if(furi_hal_rfid_is_tim_emulate(hw)) {
|
|
bool result;
|
|
bool polarity;
|
|
uint16_t period;
|
|
uint16_t pulse;
|
|
|
|
do {
|
|
_this->current_encoder->get_next(&polarity, &period, &pulse);
|
|
result = _this->pulse_joiner.push_pulse(polarity, period, pulse);
|
|
} while(result == false);
|
|
|
|
_this->pulse_joiner.pop_pulse(&period, &pulse);
|
|
|
|
furi_hal_rfid_set_emulate_period(period - 1);
|
|
furi_hal_rfid_set_emulate_pulse(pulse);
|
|
}
|
|
}
|