46bc515c6a
* App Lfrfid: init * HAL-resources: add external gpios * HAL-pwm: fix frequency calculation * App LFRFID: generic manchester decoder * App LFRFID: em-marine decoder * App iButton: fix dwt timing acquire * App LFRFID: rfid reader * App LFRFID: temporary read keys on read scene * App LFRFID: remove atomic bool init. * App LFRFID: add *.c to build * App LFRFID: unstable HID decoder * App LFRFID: HID-26 reading * HAL OS: disable sleep * App LFRFID: HID-26 reader: remove debug * App LFRFID: static data decoder-analyzer * App LFRFID: very raw Indala decoder * App LFRFID: multiprotocol reader * App LFRFID: more reliable HID decoder * App LFRFID: syntax fix * App LFRFID: simple read scene * Gui: force redraw on screen stream connect * HAL-OS: allow sleep * App LFRFID: notify api, tune view, tune scene * App LFRFID: simple rfid emulator * App LFRFID: more scenes, more reliable EM decoder. * App LFRFID: format fix * App LFRFID: warning fix * Api-hal-resources: add rfid pins, rename external pins * App LFRFID: remove unused emulator * App LFRFID: use new gpio hal api * App accessor: use new ext gpio name * App LFRFID: remove unused emulator * App LFRFID: remove debug gpio * Api-hal-resources: alternate functions init * Api-hal-rfid: new api * Api-hal-ibutton: new api * Api-hal: new headers * App LFRFID: use new api in reader subroutines * App LFRFID: use new api in emulator subroutines * App LFRFID: remove old app * App LFRFID, App iButton: fix memleak * Api-hal-rfid: comments * App LFRFID: pulse joiner helper, it combines pulses of different polarity into one pulse suitable for a timer * App LFRFID: pulse joiner, now can accept only ne pulse * App LFRFID: pulse joiner, fixes * App LFRFID: EM encoder and emulation * App LFRFID: format fixes * App LFRFID: emmarine encoder cleanup * App LFRFID: HID Encoder blank * App LFRFID: Indala Encoder blank
191 lines
5.2 KiB
C++
191 lines
5.2 KiB
C++
#include "key-reader.h"
|
|
#include "key-commands.h"
|
|
#include <callback-connector.h>
|
|
#include <maxim_crc.h>
|
|
|
|
extern COMP_HandleTypeDef hcomp1;
|
|
|
|
KeyReader::Error KeyReader::read(iButtonKey* key) {
|
|
uint8_t tmp_key_data[8] = {0, 0, 0, 0, 0, 0, 0, 0};
|
|
iButtonKeyType key_type;
|
|
|
|
KeyReader::Error result = KeyReader::Error::EMPTY;
|
|
|
|
if(read_key(&key_type, tmp_key_data, 8)) {
|
|
switch(key_type) {
|
|
case iButtonKeyType::KeyDallas:
|
|
if(verify_key(key_type, tmp_key_data, 8)) {
|
|
if(maxim_crc8(tmp_key_data, 8) == 0) {
|
|
if(tmp_key_data[0] == 0x01) {
|
|
result = KeyReader::Error::OK;
|
|
} else {
|
|
result = KeyReader::Error::NOT_ARE_KEY;
|
|
}
|
|
} else {
|
|
result = KeyReader::Error::CRC_ERROR;
|
|
}
|
|
}
|
|
|
|
break;
|
|
case iButtonKeyType::KeyCyfral:
|
|
result = KeyReader::Error::OK;
|
|
break;
|
|
case iButtonKeyType::KeyMetakom:
|
|
result = KeyReader::Error::OK;
|
|
break;
|
|
}
|
|
|
|
if(result != KeyReader::Error::EMPTY) {
|
|
key->set_type(key_type);
|
|
key->set_data(tmp_key_data, 8);
|
|
}
|
|
}
|
|
|
|
switch_mode_if_needed();
|
|
|
|
return result;
|
|
}
|
|
|
|
KeyReader::KeyReader(OneWireMaster* _onewire_master) {
|
|
onewire_master = _onewire_master;
|
|
read_mode_switch_time = 0;
|
|
read_mode = ReadMode::DALLAS;
|
|
}
|
|
|
|
KeyReader::~KeyReader() {
|
|
stop();
|
|
}
|
|
|
|
bool KeyReader::read_key(iButtonKeyType* key_type, uint8_t* data, uint8_t data_size) {
|
|
bool readed = false;
|
|
|
|
switch(read_mode) {
|
|
case ReadMode::DALLAS:
|
|
if(onewire_master->search(data)) {
|
|
onewire_master->reset_search();
|
|
readed = true;
|
|
*key_type = iButtonKeyType::KeyDallas;
|
|
} else {
|
|
onewire_master->reset_search();
|
|
}
|
|
break;
|
|
case ReadMode::CYFRAL_METAKOM:
|
|
if(cyfral_decoder.read(data, 2)) {
|
|
readed = true;
|
|
*key_type = iButtonKeyType::KeyCyfral;
|
|
} else if(metakom_decoder.read(data, 4)) {
|
|
readed = true;
|
|
*key_type = iButtonKeyType::KeyMetakom;
|
|
}
|
|
break;
|
|
}
|
|
|
|
return readed;
|
|
}
|
|
|
|
bool KeyReader::verify_key(iButtonKeyType key_type, const uint8_t* const data, uint8_t data_size) {
|
|
bool result = true;
|
|
|
|
switch(key_type) {
|
|
case iButtonKeyType::KeyDallas:
|
|
switch_to(ReadMode::DALLAS);
|
|
|
|
if(onewire_master->reset()) {
|
|
onewire_master->write(DS1990::CMD_READ_ROM);
|
|
for(uint8_t i = 0; i < data_size; i++) {
|
|
if(onewire_master->read() != data[i]) {
|
|
result = false;
|
|
}
|
|
}
|
|
} else {
|
|
result = false;
|
|
break;
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
result = false;
|
|
break;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
void KeyReader::start_comaparator(void) {
|
|
// pulldown lf-rfid pins to prevent interference
|
|
// TODO open record
|
|
GpioPin rfid_pull_pin = {.port = RFID_PULL_GPIO_Port, .pin = RFID_PULL_Pin};
|
|
hal_gpio_init(&rfid_pull_pin, GpioModeOutputOpenDrain, GpioPullNo, GpioSpeedLow);
|
|
hal_gpio_write(&rfid_pull_pin, false);
|
|
|
|
// TODO open record
|
|
GpioPin rfid_out_pin = {.port = RFID_OUT_GPIO_Port, .pin = RFID_OUT_Pin};
|
|
hal_gpio_init(&rfid_out_pin, GpioModeOutputOpenDrain, GpioPullNo, GpioSpeedLow);
|
|
hal_gpio_write(&rfid_out_pin, false);
|
|
|
|
comparator_callback_pointer =
|
|
cbc::obtain_connector(this, &KeyReader::comparator_trigger_callback);
|
|
api_interrupt_add(comparator_callback_pointer, InterruptTypeComparatorTrigger, this);
|
|
last_dwt_value = DWT->CYCCNT;
|
|
HAL_COMP_Start(&hcomp1);
|
|
}
|
|
|
|
void KeyReader::stop_comaparator(void) {
|
|
HAL_COMP_Stop(&hcomp1);
|
|
api_interrupt_remove(comparator_callback_pointer, InterruptTypeComparatorTrigger);
|
|
}
|
|
|
|
void KeyReader::comparator_trigger_callback(void* hcomp, void* comp_ctx) {
|
|
KeyReader* _this = static_cast<KeyReader*>(comp_ctx);
|
|
|
|
if(hcomp == &hcomp1) {
|
|
uint32_t current_dwt_value = DWT->CYCCNT;
|
|
|
|
_this->cyfral_decoder.process_front(hal_gpio_get_rfid_in_level(), current_dwt_value);
|
|
_this->metakom_decoder.process_front(hal_gpio_get_rfid_in_level(), current_dwt_value);
|
|
|
|
last_dwt_value = DWT->CYCCNT;
|
|
}
|
|
}
|
|
|
|
void KeyReader::switch_to(ReadMode mode) {
|
|
switch(mode) {
|
|
case ReadMode::DALLAS:
|
|
onewire_master->start();
|
|
stop_comaparator();
|
|
break;
|
|
case ReadMode::CYFRAL_METAKOM:
|
|
onewire_master->stop();
|
|
start_comaparator();
|
|
break;
|
|
}
|
|
|
|
read_mode = mode;
|
|
}
|
|
|
|
void KeyReader::switch_mode_if_needed() {
|
|
if(osKernelGetTickCount() - read_mode_switch_time > (osKernelGetTickFreq() / 5)) {
|
|
read_mode_switch_time = osKernelGetTickCount();
|
|
switch(read_mode) {
|
|
case ReadMode::DALLAS:
|
|
switch_to(ReadMode::CYFRAL_METAKOM);
|
|
break;
|
|
case ReadMode::CYFRAL_METAKOM:
|
|
switch_to(ReadMode::DALLAS);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void KeyReader::start() {
|
|
api_hal_power_enable_otg();
|
|
switch_to(ReadMode::CYFRAL_METAKOM);
|
|
}
|
|
|
|
void KeyReader::stop() {
|
|
api_hal_power_disable_otg();
|
|
onewire_master->stop();
|
|
stop_comaparator();
|
|
}
|