[FL-140] Core api dynamic records (#296)
* SYSTEM: tickless mode with deep sleep.
* Move FreeRTOS ticks to lptim2
* API: move all sumbodules init routines to one place. Timebase: working lptim2 at tick source.
* API Timebase: lp-timer routines, timer access safe zones prediction and synchronization. FreeRTOS: adjust configuration for tickless mode.
* NFC: support for tickless mode.
* API Timebase: improve tick error handling in IRQ. Apploader: use insomnia mode to run applications.
* BLE: prevent sleep while core2 starting
* HAL: nap while in insomnia mode
* init records work
* try to implement record delete
* tests and flapp
* flapp subsystem
* new core functions to get app stat, simplify core code
* fix thread termination
* add strdup to core
* fix tests
* Refactoring: remove all unusued parts, update API usage, aggreagate API sources and headers, new record storage
* Refactoring: update furi record api usage, cleanup code
* Fix broken merge for freertos apps
* Core, Target: fix compilation warnings
* Drop firmware target local
* HAL Timebase, Power, Clock: semaphore guarded access to clock and power modes, better sleep mode.
* SD-Filesystem: wait for all deps to arrive before adding widget. Core, BLE: disable debug dump to serial.
* delete old app example-ipc
* delete old app fatfs list
* fix strobe app, add input header
* delete old display driver
* comment old app qr-code
* fix sd-card test, add forced widget update
* remove unused new core test
* increase heap to 128k
* comment and assert old core tests
* fix syntax
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2021-01-20 16:09:26 +00:00
|
|
|
#include <furi.h>
|
2021-02-18 12:49:32 +00:00
|
|
|
#include <api-hal.h>
|
[FL-140] Core api dynamic records (#296)
* SYSTEM: tickless mode with deep sleep.
* Move FreeRTOS ticks to lptim2
* API: move all sumbodules init routines to one place. Timebase: working lptim2 at tick source.
* API Timebase: lp-timer routines, timer access safe zones prediction and synchronization. FreeRTOS: adjust configuration for tickless mode.
* NFC: support for tickless mode.
* API Timebase: improve tick error handling in IRQ. Apploader: use insomnia mode to run applications.
* BLE: prevent sleep while core2 starting
* HAL: nap while in insomnia mode
* init records work
* try to implement record delete
* tests and flapp
* flapp subsystem
* new core functions to get app stat, simplify core code
* fix thread termination
* add strdup to core
* fix tests
* Refactoring: remove all unusued parts, update API usage, aggreagate API sources and headers, new record storage
* Refactoring: update furi record api usage, cleanup code
* Fix broken merge for freertos apps
* Core, Target: fix compilation warnings
* Drop firmware target local
* HAL Timebase, Power, Clock: semaphore guarded access to clock and power modes, better sleep mode.
* SD-Filesystem: wait for all deps to arrive before adding widget. Core, BLE: disable debug dump to serial.
* delete old app example-ipc
* delete old app fatfs list
* fix strobe app, add input header
* delete old display driver
* comment old app qr-code
* fix sd-card test, add forced widget update
* remove unused new core test
* increase heap to 128k
* comment and assert old core tests
* fix syntax
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2021-01-20 16:09:26 +00:00
|
|
|
#include <gui/gui.h>
|
2021-03-02 10:17:27 +00:00
|
|
|
#include <stream_buffer.h>
|
2020-10-26 09:56:46 +00:00
|
|
|
|
2020-11-19 11:11:03 +00:00
|
|
|
typedef enum { EventTypeTick, EventTypeKey, EventTypeRx } EventType;
|
|
|
|
|
|
|
|
typedef struct {
|
2021-03-02 10:17:27 +00:00
|
|
|
uint8_t dummy;
|
2020-11-19 11:11:03 +00:00
|
|
|
} RxEvent;
|
2020-10-26 09:56:46 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
union {
|
|
|
|
InputEvent input;
|
2020-11-19 11:11:03 +00:00
|
|
|
RxEvent rx;
|
2020-10-26 09:56:46 +00:00
|
|
|
} value;
|
|
|
|
EventType type;
|
|
|
|
} AppEvent;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint32_t freq_khz;
|
|
|
|
bool on;
|
2020-11-19 11:11:03 +00:00
|
|
|
uint8_t customer_id;
|
|
|
|
uint32_t em_data;
|
2021-01-26 13:49:37 +00:00
|
|
|
bool dirty;
|
2021-03-02 10:17:27 +00:00
|
|
|
bool dirty_freq;
|
2020-10-26 09:56:46 +00:00
|
|
|
} State;
|
|
|
|
|
2020-12-14 10:50:32 +00:00
|
|
|
static void render_callback(Canvas* canvas, void* ctx) {
|
2020-10-26 09:56:46 +00:00
|
|
|
State* state = (State*)acquire_mutex((ValueMutex*)ctx, 25);
|
|
|
|
|
2020-12-14 10:50:32 +00:00
|
|
|
canvas_clear(canvas);
|
2020-10-26 09:56:46 +00:00
|
|
|
|
2020-12-14 10:50:32 +00:00
|
|
|
canvas_set_color(canvas, ColorBlack);
|
|
|
|
canvas_set_font(canvas, FontPrimary);
|
|
|
|
canvas_draw_str(canvas, 2, 12, "LF RFID");
|
2020-10-26 09:56:46 +00:00
|
|
|
|
2020-12-14 10:50:32 +00:00
|
|
|
canvas_draw_str(canvas, 2, 24, state->on ? "Reading" : "Emulating");
|
2020-11-19 11:11:03 +00:00
|
|
|
|
|
|
|
char buf[14];
|
|
|
|
|
2020-10-29 07:58:19 +00:00
|
|
|
sprintf(buf, "%d kHz", (int)state->freq_khz);
|
2020-12-14 10:50:32 +00:00
|
|
|
canvas_draw_str(canvas, 2, 36, buf);
|
2020-10-26 09:56:46 +00:00
|
|
|
|
2020-11-19 11:11:03 +00:00
|
|
|
sprintf(buf, "%02d:%010ld", state->customer_id, state->em_data);
|
2020-12-14 10:50:32 +00:00
|
|
|
canvas_draw_str(canvas, 2, 45, buf);
|
2020-11-19 11:11:03 +00:00
|
|
|
|
2020-10-26 09:56:46 +00:00
|
|
|
release_mutex((ValueMutex*)ctx, state);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void input_callback(InputEvent* input_event, void* ctx) {
|
[FL-140] Core api dynamic records (#296)
* SYSTEM: tickless mode with deep sleep.
* Move FreeRTOS ticks to lptim2
* API: move all sumbodules init routines to one place. Timebase: working lptim2 at tick source.
* API Timebase: lp-timer routines, timer access safe zones prediction and synchronization. FreeRTOS: adjust configuration for tickless mode.
* NFC: support for tickless mode.
* API Timebase: improve tick error handling in IRQ. Apploader: use insomnia mode to run applications.
* BLE: prevent sleep while core2 starting
* HAL: nap while in insomnia mode
* init records work
* try to implement record delete
* tests and flapp
* flapp subsystem
* new core functions to get app stat, simplify core code
* fix thread termination
* add strdup to core
* fix tests
* Refactoring: remove all unusued parts, update API usage, aggreagate API sources and headers, new record storage
* Refactoring: update furi record api usage, cleanup code
* Fix broken merge for freertos apps
* Core, Target: fix compilation warnings
* Drop firmware target local
* HAL Timebase, Power, Clock: semaphore guarded access to clock and power modes, better sleep mode.
* SD-Filesystem: wait for all deps to arrive before adding widget. Core, BLE: disable debug dump to serial.
* delete old app example-ipc
* delete old app fatfs list
* fix strobe app, add input header
* delete old display driver
* comment old app qr-code
* fix sd-card test, add forced widget update
* remove unused new core test
* increase heap to 128k
* comment and assert old core tests
* fix syntax
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2021-01-20 16:09:26 +00:00
|
|
|
osMessageQueueId_t event_queue = ctx;
|
2020-10-26 09:56:46 +00:00
|
|
|
|
|
|
|
AppEvent event;
|
|
|
|
event.type = EventTypeKey;
|
|
|
|
event.value.input = *input_event;
|
|
|
|
osMessageQueuePut(event_queue, &event, 0, 0);
|
|
|
|
}
|
|
|
|
|
2020-11-06 08:31:59 +00:00
|
|
|
extern TIM_HandleTypeDef TIM_C;
|
2020-10-28 08:38:04 +00:00
|
|
|
void em4100_emulation(uint8_t* data, GpioPin* pin);
|
|
|
|
void prepare_data(uint32_t ID, uint32_t VENDOR, uint8_t* data);
|
2020-10-26 09:56:46 +00:00
|
|
|
|
2020-11-19 11:11:03 +00:00
|
|
|
GpioPin debug_0 = {.pin = GPIO_PIN_2, .port = GPIOB};
|
|
|
|
GpioPin debug_1 = {.pin = GPIO_PIN_3, .port = GPIOC};
|
|
|
|
|
|
|
|
extern COMP_HandleTypeDef hcomp1;
|
|
|
|
|
2021-03-02 10:17:27 +00:00
|
|
|
typedef struct {
|
|
|
|
osMessageQueueId_t event_queue;
|
|
|
|
uint32_t prev_dwt;
|
|
|
|
int8_t symbol;
|
|
|
|
bool center;
|
|
|
|
size_t symbol_cnt;
|
|
|
|
StreamBufferHandle_t stream_buffer;
|
|
|
|
uint8_t* int_buffer;
|
|
|
|
} ComparatorCtx;
|
|
|
|
|
|
|
|
void init_comp_ctx(ComparatorCtx* ctx) {
|
|
|
|
ctx->prev_dwt = 0;
|
|
|
|
ctx->symbol = -1; // init state
|
|
|
|
ctx->center = false;
|
|
|
|
ctx->symbol_cnt = 0;
|
|
|
|
xStreamBufferReset(ctx->stream_buffer);
|
|
|
|
|
|
|
|
for(size_t i = 0; i < 64; i++) {
|
|
|
|
ctx->int_buffer[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-18 19:26:03 +00:00
|
|
|
void comparator_trigger_callback(void* hcomp, void* comp_ctx) {
|
2021-03-02 10:17:27 +00:00
|
|
|
ComparatorCtx* ctx = (ComparatorCtx*)comp_ctx;
|
2020-11-19 11:11:03 +00:00
|
|
|
|
2021-03-02 10:17:27 +00:00
|
|
|
uint32_t dt = (DWT->CYCCNT - ctx->prev_dwt) / (SystemCoreClock / 1000000.0f);
|
|
|
|
ctx->prev_dwt = DWT->CYCCNT;
|
2020-11-19 11:11:03 +00:00
|
|
|
|
2021-03-02 10:17:27 +00:00
|
|
|
if(dt < 150) return; // supress noise
|
2020-11-19 11:11:03 +00:00
|
|
|
|
2021-03-02 10:17:27 +00:00
|
|
|
// wait message will be consumed
|
|
|
|
if(xStreamBufferBytesAvailable(ctx->stream_buffer) == 64) return;
|
2020-11-19 11:11:03 +00:00
|
|
|
|
2021-03-02 10:17:27 +00:00
|
|
|
gpio_write(&debug_0, true);
|
|
|
|
|
|
|
|
// TOOD F4 and F5 differ
|
|
|
|
bool rx_value = get_rfid_in_level();
|
|
|
|
|
|
|
|
if(dt > 384) {
|
|
|
|
// change symbol 0->1 or 1->0
|
|
|
|
ctx->symbol = rx_value;
|
|
|
|
ctx->center = true;
|
|
|
|
} else {
|
|
|
|
// same symbol as prev or center
|
|
|
|
ctx->center = !ctx->center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
gpio_write(&debug_1, true);
|
|
|
|
delay_us(center ? 10 : 30);
|
|
|
|
gpio_write(&debug_1, false);
|
|
|
|
*/
|
|
|
|
|
|
|
|
BaseType_t xHigherPriorityTaskWoken = pdFALSE;
|
|
|
|
|
|
|
|
if(ctx->center && ctx->symbol != -1) {
|
|
|
|
/*
|
|
|
|
gpio_write(&debug_0, true);
|
|
|
|
delay_us(symbol ? 10 : 30);
|
|
|
|
gpio_write(&debug_0, false);
|
|
|
|
*/
|
|
|
|
|
|
|
|
ctx->int_buffer[ctx->symbol_cnt] = ctx->symbol;
|
|
|
|
ctx->symbol_cnt++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check preamble
|
|
|
|
if(ctx->symbol_cnt <= 9 && ctx->symbol == 0) {
|
|
|
|
ctx->symbol_cnt = 0;
|
|
|
|
ctx->symbol = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check stop bit
|
|
|
|
if(ctx->symbol_cnt == 64 && ctx->symbol == 1) {
|
|
|
|
ctx->symbol_cnt = 0;
|
|
|
|
ctx->symbol = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
// write only 9..64 symbols directly to streambuffer
|
|
|
|
|
|
|
|
if(ctx->symbol_cnt == 64) {
|
|
|
|
if(xStreamBufferSendFromISR(
|
|
|
|
ctx->stream_buffer, ctx->int_buffer, 64, &xHigherPriorityTaskWoken) == 64) {
|
|
|
|
AppEvent event;
|
|
|
|
event.type = EventTypeRx;
|
|
|
|
osMessageQueuePut(ctx->event_queue, &event, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->symbol_cnt = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
gpio_write(&debug_0, false);
|
|
|
|
|
|
|
|
portYIELD_FROM_ISR(xHigherPriorityTaskWoken);
|
2020-11-19 11:11:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const uint8_t ROW_SIZE = 4;
|
|
|
|
const uint8_t LINE_SIZE = 10;
|
|
|
|
|
|
|
|
static bool even_check(uint8_t* buf) {
|
|
|
|
uint8_t col_parity_sum[ROW_SIZE];
|
|
|
|
for(uint8_t col = 0; col < ROW_SIZE; col++) {
|
|
|
|
col_parity_sum[col] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// line parity
|
|
|
|
for(uint8_t line = 0; line < LINE_SIZE; line++) {
|
|
|
|
printf("%d: ", line);
|
|
|
|
uint8_t parity_sum = 0;
|
|
|
|
for(uint8_t col = 0; col < ROW_SIZE; col++) {
|
|
|
|
parity_sum += buf[line * (ROW_SIZE + 1) + col];
|
|
|
|
col_parity_sum[col] += buf[line * (ROW_SIZE + 1) + col];
|
|
|
|
printf("%d ", buf[line * (ROW_SIZE + 1) + col]);
|
|
|
|
}
|
|
|
|
if((1 & parity_sum) != buf[line * (ROW_SIZE + 1) + ROW_SIZE]) {
|
|
|
|
printf(
|
|
|
|
"line parity fail at %d (%d : %d)\n",
|
|
|
|
line,
|
|
|
|
parity_sum,
|
|
|
|
buf[line * (ROW_SIZE + 1) + ROW_SIZE]);
|
|
|
|
return false;
|
|
|
|
}
|
[FL-781] FURI, CLI, stdlib: stdout hooks, integration between subsystems, uniform printf usage (#311)
* FURI stdglue: stdout hooks, local and global, ISR safe printf. Uniform newlines for terminal/debug output. Power: prevent sleep while core 2 has not started.
* Furi record, stdglue: check mutex allocation
* remove unused test
* Furi stdglue: buferized output, dynamically allocated state. Furi record: dynamically allocated state. Input dump: proper line ending. Hal VCP: dynamically allocated state.
* Interrupt manager: explicitly init list.
* Makefile: cleanup rules, fix broken dfu upload. F4: add compiler stack protection options.
* BLE: call debug uart callback on transmission complete
* FreeRTOS: add configUSE_NEWLIB_REENTRANT
* API HAL Timebase: fix issue with idle thread stack corruption caused by systick interrupt. BT: cleanup debug info output. FreeRTOS: disable reentry for newlib.
* F4: update stack protection CFLAGS to match used compiller
* F4: disable compiller stack protection because of incompatibility with current compiller
* Makefile: return openocd logs to gdb
* BLE: fixed pin, moar power, ble trace info.
* Prevent sleep when connection is active
* Makefile: return serial port to upload rule, add workaround for mac os
* Furi: prevent usage of stack for cmsis functions.
* F4: add missing includes, add debugger breakpoints
* Applications: per app stack size.
* Furi: honor kernel state in stdglue
* FreeRTOS: remove unused hooks
* Cleanup and format sources
Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
2021-01-29 00:09:33 +00:00
|
|
|
printf("\r\n");
|
2020-11-19 11:11:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for(uint8_t col = 0; col < ROW_SIZE; col++) {
|
|
|
|
if((1 & col_parity_sum[col]) != buf[LINE_SIZE * (ROW_SIZE + 1) + col]) {
|
|
|
|
printf(
|
|
|
|
"col parity fail at %d (%d : %d)\n",
|
|
|
|
col,
|
|
|
|
col_parity_sum[col],
|
|
|
|
buf[LINE_SIZE * (ROW_SIZE + 1) + col]);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void extract_data(uint8_t* buf, uint8_t* customer, uint32_t* em_data) {
|
|
|
|
uint32_t data = 0;
|
|
|
|
uint8_t offset = 0;
|
|
|
|
|
|
|
|
printf("customer: ");
|
|
|
|
for(uint8_t line = 0; line < 2; line++) {
|
|
|
|
for(uint8_t col = 0; col < ROW_SIZE; col++) {
|
|
|
|
uint32_t bit = buf[line * (ROW_SIZE + 1) + col];
|
|
|
|
|
|
|
|
data |= bit << (7 - offset);
|
2021-02-01 07:51:22 +00:00
|
|
|
printf("%ld ", bit);
|
2020-11-19 11:11:03 +00:00
|
|
|
|
|
|
|
offset++;
|
|
|
|
}
|
|
|
|
}
|
[FL-781] FURI, CLI, stdlib: stdout hooks, integration between subsystems, uniform printf usage (#311)
* FURI stdglue: stdout hooks, local and global, ISR safe printf. Uniform newlines for terminal/debug output. Power: prevent sleep while core 2 has not started.
* Furi record, stdglue: check mutex allocation
* remove unused test
* Furi stdglue: buferized output, dynamically allocated state. Furi record: dynamically allocated state. Input dump: proper line ending. Hal VCP: dynamically allocated state.
* Interrupt manager: explicitly init list.
* Makefile: cleanup rules, fix broken dfu upload. F4: add compiler stack protection options.
* BLE: call debug uart callback on transmission complete
* FreeRTOS: add configUSE_NEWLIB_REENTRANT
* API HAL Timebase: fix issue with idle thread stack corruption caused by systick interrupt. BT: cleanup debug info output. FreeRTOS: disable reentry for newlib.
* F4: update stack protection CFLAGS to match used compiller
* F4: disable compiller stack protection because of incompatibility with current compiller
* Makefile: return openocd logs to gdb
* BLE: fixed pin, moar power, ble trace info.
* Prevent sleep when connection is active
* Makefile: return serial port to upload rule, add workaround for mac os
* Furi: prevent usage of stack for cmsis functions.
* F4: add missing includes, add debugger breakpoints
* Applications: per app stack size.
* Furi: honor kernel state in stdglue
* FreeRTOS: remove unused hooks
* Cleanup and format sources
Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
2021-01-29 00:09:33 +00:00
|
|
|
printf("\r\n");
|
2020-11-19 11:11:03 +00:00
|
|
|
|
|
|
|
*customer = data;
|
|
|
|
|
|
|
|
data = 0;
|
|
|
|
offset = 0;
|
|
|
|
printf("data: ");
|
|
|
|
for(uint8_t line = 2; line < LINE_SIZE; line++) {
|
|
|
|
for(uint8_t col = 0; col < ROW_SIZE; col++) {
|
|
|
|
uint32_t bit = buf[line * (ROW_SIZE + 1) + col];
|
|
|
|
|
|
|
|
data |= bit << (31 - offset);
|
2021-02-01 07:51:22 +00:00
|
|
|
printf("%ld ", bit);
|
2020-11-19 11:11:03 +00:00
|
|
|
|
|
|
|
offset++;
|
|
|
|
}
|
|
|
|
}
|
[FL-781] FURI, CLI, stdlib: stdout hooks, integration between subsystems, uniform printf usage (#311)
* FURI stdglue: stdout hooks, local and global, ISR safe printf. Uniform newlines for terminal/debug output. Power: prevent sleep while core 2 has not started.
* Furi record, stdglue: check mutex allocation
* remove unused test
* Furi stdglue: buferized output, dynamically allocated state. Furi record: dynamically allocated state. Input dump: proper line ending. Hal VCP: dynamically allocated state.
* Interrupt manager: explicitly init list.
* Makefile: cleanup rules, fix broken dfu upload. F4: add compiler stack protection options.
* BLE: call debug uart callback on transmission complete
* FreeRTOS: add configUSE_NEWLIB_REENTRANT
* API HAL Timebase: fix issue with idle thread stack corruption caused by systick interrupt. BT: cleanup debug info output. FreeRTOS: disable reentry for newlib.
* F4: update stack protection CFLAGS to match used compiller
* F4: disable compiller stack protection because of incompatibility with current compiller
* Makefile: return openocd logs to gdb
* BLE: fixed pin, moar power, ble trace info.
* Prevent sleep when connection is active
* Makefile: return serial port to upload rule, add workaround for mac os
* Furi: prevent usage of stack for cmsis functions.
* F4: add missing includes, add debugger breakpoints
* Applications: per app stack size.
* Furi: honor kernel state in stdglue
* FreeRTOS: remove unused hooks
* Cleanup and format sources
Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
2021-01-29 00:09:33 +00:00
|
|
|
printf("\r\n");
|
2020-11-19 11:11:03 +00:00
|
|
|
|
|
|
|
*em_data = data;
|
|
|
|
}
|
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
int32_t lf_rfid_workaround(void* p) {
|
2021-03-02 10:17:27 +00:00
|
|
|
osMessageQueueId_t event_queue = osMessageQueueNew(2, sizeof(AppEvent), NULL);
|
2020-10-26 09:56:46 +00:00
|
|
|
|
2020-10-28 08:38:04 +00:00
|
|
|
// create pin
|
2020-11-06 08:31:59 +00:00
|
|
|
GpioPin pull_pin = {.pin = RFID_PULL_Pin, .port = RFID_PULL_GPIO_Port};
|
2020-10-28 08:38:04 +00:00
|
|
|
// TODO open record
|
|
|
|
GpioPin* pull_pin_record = &pull_pin;
|
|
|
|
|
|
|
|
gpio_init(pull_pin_record, GpioModeOutputPushPull);
|
|
|
|
|
2020-11-19 11:11:03 +00:00
|
|
|
gpio_init(&debug_0, GpioModeOutputPushPull);
|
|
|
|
gpio_init(&debug_1, GpioModeOutputPushPull);
|
|
|
|
|
|
|
|
// pulldown iBtn pin to prevent interference from ibutton
|
|
|
|
gpio_init((GpioPin*)&ibutton_gpio, GpioModeOutputOpenDrain);
|
|
|
|
gpio_write((GpioPin*)&ibutton_gpio, false);
|
|
|
|
|
|
|
|
// init ctx
|
2021-03-02 10:17:27 +00:00
|
|
|
ComparatorCtx comp_ctx;
|
|
|
|
|
|
|
|
// internal buffer
|
|
|
|
uint8_t int_bufer[64];
|
|
|
|
|
|
|
|
comp_ctx.stream_buffer = xStreamBufferCreate(64, 64);
|
|
|
|
comp_ctx.int_buffer = int_bufer;
|
|
|
|
comp_ctx.event_queue = event_queue;
|
|
|
|
init_comp_ctx(&comp_ctx);
|
|
|
|
|
|
|
|
if(comp_ctx.stream_buffer == NULL) {
|
|
|
|
printf("cannot create stream buffer\r\n");
|
|
|
|
return 255;
|
|
|
|
}
|
2020-12-18 19:26:03 +00:00
|
|
|
|
2020-11-19 11:11:03 +00:00
|
|
|
// start comp
|
|
|
|
HAL_COMP_Start(&hcomp1);
|
|
|
|
|
2021-03-02 10:17:27 +00:00
|
|
|
uint8_t raw_data[64];
|
|
|
|
for(size_t i = 0; i < 64; i++) {
|
|
|
|
raw_data[i] = 0;
|
|
|
|
}
|
2020-10-28 08:38:04 +00:00
|
|
|
|
2020-10-26 09:56:46 +00:00
|
|
|
State _state;
|
|
|
|
_state.freq_khz = 125;
|
|
|
|
_state.on = false;
|
2021-01-28 23:45:32 +00:00
|
|
|
_state.customer_id = 00;
|
2020-11-19 11:11:03 +00:00
|
|
|
_state.em_data = 4378151;
|
2021-01-26 13:49:37 +00:00
|
|
|
_state.dirty = true;
|
2021-03-02 10:17:27 +00:00
|
|
|
_state.dirty_freq = true;
|
2020-10-26 09:56:46 +00:00
|
|
|
|
|
|
|
ValueMutex state_mutex;
|
|
|
|
if(!init_mutex(&state_mutex, &_state, sizeof(State))) {
|
[FL-781] FURI, CLI, stdlib: stdout hooks, integration between subsystems, uniform printf usage (#311)
* FURI stdglue: stdout hooks, local and global, ISR safe printf. Uniform newlines for terminal/debug output. Power: prevent sleep while core 2 has not started.
* Furi record, stdglue: check mutex allocation
* remove unused test
* Furi stdglue: buferized output, dynamically allocated state. Furi record: dynamically allocated state. Input dump: proper line ending. Hal VCP: dynamically allocated state.
* Interrupt manager: explicitly init list.
* Makefile: cleanup rules, fix broken dfu upload. F4: add compiler stack protection options.
* BLE: call debug uart callback on transmission complete
* FreeRTOS: add configUSE_NEWLIB_REENTRANT
* API HAL Timebase: fix issue with idle thread stack corruption caused by systick interrupt. BT: cleanup debug info output. FreeRTOS: disable reentry for newlib.
* F4: update stack protection CFLAGS to match used compiller
* F4: disable compiller stack protection because of incompatibility with current compiller
* Makefile: return openocd logs to gdb
* BLE: fixed pin, moar power, ble trace info.
* Prevent sleep when connection is active
* Makefile: return serial port to upload rule, add workaround for mac os
* Furi: prevent usage of stack for cmsis functions.
* F4: add missing includes, add debugger breakpoints
* Applications: per app stack size.
* Furi: honor kernel state in stdglue
* FreeRTOS: remove unused hooks
* Cleanup and format sources
Co-authored-by: DrZlo13 <who.just.the.doctor@gmail.com>
2021-01-29 00:09:33 +00:00
|
|
|
printf("cannot create mutex\r\n");
|
2021-02-12 17:24:34 +00:00
|
|
|
return 255;
|
2020-10-26 09:56:46 +00:00
|
|
|
}
|
|
|
|
|
2021-01-29 13:52:16 +00:00
|
|
|
ViewPort* view_port = view_port_alloc();
|
2020-10-26 09:56:46 +00:00
|
|
|
|
2021-01-29 13:52:16 +00:00
|
|
|
view_port_draw_callback_set(view_port, render_callback, &state_mutex);
|
|
|
|
view_port_input_callback_set(view_port, input_callback, event_queue);
|
2020-10-26 09:56:46 +00:00
|
|
|
|
2021-01-29 13:52:16 +00:00
|
|
|
// Open GUI and register view_port
|
[FL-140] Core api dynamic records (#296)
* SYSTEM: tickless mode with deep sleep.
* Move FreeRTOS ticks to lptim2
* API: move all sumbodules init routines to one place. Timebase: working lptim2 at tick source.
* API Timebase: lp-timer routines, timer access safe zones prediction and synchronization. FreeRTOS: adjust configuration for tickless mode.
* NFC: support for tickless mode.
* API Timebase: improve tick error handling in IRQ. Apploader: use insomnia mode to run applications.
* BLE: prevent sleep while core2 starting
* HAL: nap while in insomnia mode
* init records work
* try to implement record delete
* tests and flapp
* flapp subsystem
* new core functions to get app stat, simplify core code
* fix thread termination
* add strdup to core
* fix tests
* Refactoring: remove all unusued parts, update API usage, aggreagate API sources and headers, new record storage
* Refactoring: update furi record api usage, cleanup code
* Fix broken merge for freertos apps
* Core, Target: fix compilation warnings
* Drop firmware target local
* HAL Timebase, Power, Clock: semaphore guarded access to clock and power modes, better sleep mode.
* SD-Filesystem: wait for all deps to arrive before adding widget. Core, BLE: disable debug dump to serial.
* delete old app example-ipc
* delete old app fatfs list
* fix strobe app, add input header
* delete old display driver
* comment old app qr-code
* fix sd-card test, add forced widget update
* remove unused new core test
* increase heap to 128k
* comment and assert old core tests
* fix syntax
Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
2021-01-20 16:09:26 +00:00
|
|
|
Gui* gui = furi_record_open("gui");
|
2021-01-29 13:52:16 +00:00
|
|
|
gui_add_view_port(gui, view_port, GuiLayerFullscreen);
|
2020-10-26 09:56:46 +00:00
|
|
|
|
|
|
|
AppEvent event;
|
2020-11-19 11:11:03 +00:00
|
|
|
|
2020-10-26 09:56:46 +00:00
|
|
|
while(1) {
|
2021-02-10 08:56:05 +00:00
|
|
|
osStatus_t event_status = osMessageQueueGet(event_queue, &event, NULL, 1024 / 8);
|
2020-10-26 09:56:46 +00:00
|
|
|
|
2020-11-19 11:11:03 +00:00
|
|
|
if(event.type == EventTypeRx && event_status == osOK) {
|
2021-03-02 10:17:27 +00:00
|
|
|
size_t received = xStreamBufferReceive(comp_ctx.stream_buffer, raw_data, 64, 0);
|
|
|
|
printf("received: %d\r\n", received);
|
|
|
|
if(received == 64) {
|
|
|
|
if(even_check(&raw_data[9])) {
|
|
|
|
State* state = (State*)acquire_mutex_block(&state_mutex);
|
|
|
|
extract_data(&raw_data[9], &state->customer_id, &state->em_data);
|
2020-10-26 09:56:46 +00:00
|
|
|
|
2021-03-02 10:17:27 +00:00
|
|
|
printf("customer: %02d, data: %010lu\n", state->customer_id, state->em_data);
|
2020-11-19 11:11:03 +00:00
|
|
|
|
2021-03-02 10:17:27 +00:00
|
|
|
release_mutex(&state_mutex, state);
|
2020-11-19 11:11:03 +00:00
|
|
|
|
2021-03-02 10:17:27 +00:00
|
|
|
view_port_update(view_port);
|
2020-10-26 09:56:46 +00:00
|
|
|
|
2021-02-18 12:49:32 +00:00
|
|
|
api_hal_light_set(LightGreen, 0xFF);
|
2021-03-02 10:17:27 +00:00
|
|
|
osDelay(50);
|
2021-02-18 12:49:32 +00:00
|
|
|
api_hal_light_set(LightGreen, 0x00);
|
2020-10-26 09:56:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2020-11-19 11:11:03 +00:00
|
|
|
State* state = (State*)acquire_mutex_block(&state_mutex);
|
2020-10-26 09:56:46 +00:00
|
|
|
|
2020-11-19 11:11:03 +00:00
|
|
|
if(event_status == osOK) {
|
|
|
|
if(event.type == EventTypeKey) {
|
|
|
|
// press events
|
2021-02-10 08:56:05 +00:00
|
|
|
if(event.value.input.type == InputTypePress &&
|
|
|
|
event.value.input.key == InputKeyBack) {
|
2020-11-19 11:11:03 +00:00
|
|
|
hal_pwmn_stop(&TIM_C, TIM_CHANNEL_1); // TODO: move to furiac_onexit
|
2021-03-02 10:17:27 +00:00
|
|
|
api_interrupt_remove(
|
|
|
|
comparator_trigger_callback, InterruptTypeComparatorTrigger);
|
2020-11-19 11:11:03 +00:00
|
|
|
gpio_init(pull_pin_record, GpioModeInput);
|
|
|
|
gpio_init((GpioPin*)&ibutton_gpio, GpioModeInput);
|
2020-10-26 09:56:46 +00:00
|
|
|
|
2021-01-29 13:52:16 +00:00
|
|
|
// TODO remove all view_ports create by app
|
|
|
|
view_port_enabled_set(view_port, false);
|
2021-02-12 17:24:34 +00:00
|
|
|
return 255;
|
2020-11-19 11:11:03 +00:00
|
|
|
}
|
|
|
|
|
2021-02-10 08:56:05 +00:00
|
|
|
if(event.value.input.type == InputTypePress &&
|
|
|
|
event.value.input.key == InputKeyUp) {
|
2021-03-02 10:17:27 +00:00
|
|
|
state->dirty_freq = true;
|
2020-11-19 11:11:03 +00:00
|
|
|
state->freq_khz += 10;
|
|
|
|
}
|
|
|
|
|
2021-02-10 08:56:05 +00:00
|
|
|
if(event.value.input.type == InputTypePress &&
|
|
|
|
event.value.input.key == InputKeyDown) {
|
2021-03-02 10:17:27 +00:00
|
|
|
state->dirty_freq = true;
|
2020-11-19 11:11:03 +00:00
|
|
|
state->freq_khz -= 10;
|
|
|
|
}
|
|
|
|
|
2021-02-10 08:56:05 +00:00
|
|
|
if(event.value.input.type == InputTypePress &&
|
|
|
|
event.value.input.key == InputKeyLeft) {
|
2020-11-19 11:11:03 +00:00
|
|
|
}
|
2020-10-28 08:38:04 +00:00
|
|
|
|
2021-02-10 08:56:05 +00:00
|
|
|
if(event.value.input.type == InputTypePress &&
|
|
|
|
event.value.input.key == InputKeyRight) {
|
2020-11-19 11:11:03 +00:00
|
|
|
}
|
2020-10-26 09:56:46 +00:00
|
|
|
|
2021-02-10 08:56:05 +00:00
|
|
|
if(event.value.input.type == InputTypePress &&
|
|
|
|
event.value.input.key == InputKeyOk) {
|
2021-01-26 13:49:37 +00:00
|
|
|
state->dirty = true;
|
2020-11-19 11:11:03 +00:00
|
|
|
state->on = !state->on;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// event timeout
|
|
|
|
}
|
|
|
|
|
2021-01-26 13:49:37 +00:00
|
|
|
if(state->dirty) {
|
|
|
|
if(state->on) {
|
|
|
|
gpio_write(pull_pin_record, false);
|
2021-03-02 10:17:27 +00:00
|
|
|
init_comp_ctx(&comp_ctx);
|
2021-01-26 13:49:37 +00:00
|
|
|
api_interrupt_add(
|
2021-03-02 10:17:27 +00:00
|
|
|
comparator_trigger_callback, InterruptTypeComparatorTrigger, &comp_ctx);
|
2021-01-26 13:49:37 +00:00
|
|
|
} else {
|
2021-03-02 10:17:27 +00:00
|
|
|
prepare_data(state->em_data, state->customer_id, raw_data);
|
2021-01-28 12:30:31 +00:00
|
|
|
api_interrupt_remove(
|
|
|
|
comparator_trigger_callback, InterruptTypeComparatorTrigger);
|
2021-01-26 13:49:37 +00:00
|
|
|
}
|
|
|
|
|
2021-03-02 10:17:27 +00:00
|
|
|
state->dirty_freq = true; // config new PWM next
|
|
|
|
|
|
|
|
state->dirty = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(state->dirty_freq) {
|
2021-01-26 13:49:37 +00:00
|
|
|
hal_pwmn_set(
|
|
|
|
state->on ? 0.5 : 0.0, (float)(state->freq_khz * 1000), &LFRFID_TIM, LFRFID_CH);
|
|
|
|
|
2021-03-02 10:17:27 +00:00
|
|
|
state->dirty_freq = false;
|
2021-01-26 13:49:37 +00:00
|
|
|
}
|
2020-11-19 11:11:03 +00:00
|
|
|
|
|
|
|
if(!state->on) {
|
2021-03-02 10:17:27 +00:00
|
|
|
em4100_emulation(raw_data, pull_pin_record);
|
2020-11-19 11:11:03 +00:00
|
|
|
}
|
|
|
|
release_mutex(&state_mutex, state);
|
2021-03-02 10:17:27 +00:00
|
|
|
view_port_update(view_port);
|
2020-11-19 11:11:03 +00:00
|
|
|
}
|
2020-10-26 09:56:46 +00:00
|
|
|
}
|
2021-02-12 17:24:34 +00:00
|
|
|
|
|
|
|
return 0;
|
2020-10-26 09:56:46 +00:00
|
|
|
}
|