[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>
|
|
|
|
#include <input/input.h>
|
2021-04-19 16:36:45 +00:00
|
|
|
#include <cli/cli.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
|
|
|
|
2021-05-18 10:51:00 +00:00
|
|
|
#include <api-hal-irda.h>
|
|
|
|
#include "irda.h"
|
2020-10-23 09:39:11 +00:00
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
EventTypeTick,
|
|
|
|
EventTypeKey,
|
2020-11-11 07:36:27 +00:00
|
|
|
EventTypeRX,
|
2020-10-23 09:39:11 +00:00
|
|
|
} EventType;
|
|
|
|
|
2021-05-18 10:51:00 +00:00
|
|
|
typedef IrdaMessage IrDAPacket;
|
2021-01-07 16:28:35 +00:00
|
|
|
|
2020-10-23 09:39:11 +00:00
|
|
|
typedef struct {
|
|
|
|
union {
|
|
|
|
InputEvent input;
|
2021-05-18 10:51:00 +00:00
|
|
|
IrDAPacket rx;
|
2020-10-23 09:39:11 +00:00
|
|
|
} value;
|
|
|
|
EventType type;
|
2020-10-26 09:26:15 +00:00
|
|
|
} AppEvent;
|
2020-10-23 09:39:11 +00:00
|
|
|
|
2021-05-18 10:51:00 +00:00
|
|
|
//typedef struct {
|
|
|
|
// IrdaProtocol protocol;
|
|
|
|
// uint32_t address;
|
|
|
|
// uint32_t command;
|
|
|
|
//} IrDAPacket;
|
2021-01-07 16:28:35 +00:00
|
|
|
|
|
|
|
#define IRDA_PACKET_COUNT 8
|
|
|
|
|
2021-04-19 16:36:45 +00:00
|
|
|
typedef struct {
|
|
|
|
osMessageQueueId_t cli_ir_rx_queue;
|
|
|
|
Cli* cli;
|
|
|
|
bool cli_cmd_is_active;
|
|
|
|
} IrDAApp;
|
|
|
|
|
2020-10-23 09:39:11 +00:00
|
|
|
typedef struct {
|
|
|
|
uint8_t mode_id;
|
|
|
|
uint16_t carrier_freq;
|
|
|
|
uint8_t carrier_duty_cycle_id;
|
2021-01-07 16:28:35 +00:00
|
|
|
|
|
|
|
uint8_t packet_id;
|
|
|
|
IrDAPacket packets[IRDA_PACKET_COUNT];
|
2020-10-23 09:39:11 +00:00
|
|
|
} State;
|
|
|
|
|
2020-10-26 09:26:15 +00:00
|
|
|
typedef void (*ModeInput)(AppEvent*, State*);
|
2020-12-14 10:50:32 +00:00
|
|
|
typedef void (*ModeRender)(Canvas*, State*);
|
2020-10-23 09:39:11 +00:00
|
|
|
|
2020-10-26 09:26:15 +00:00
|
|
|
void input_carrier(AppEvent* event, State* state);
|
2020-12-14 10:50:32 +00:00
|
|
|
void render_carrier(Canvas* canvas, State* state);
|
2021-01-07 16:28:35 +00:00
|
|
|
void input_packet(AppEvent* event, State* state);
|
|
|
|
void render_packet(Canvas* canvas, State* state);
|
2020-10-23 09:39:11 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
ModeRender render;
|
|
|
|
ModeInput input;
|
|
|
|
} Mode;
|
|
|
|
|
|
|
|
const Mode modes[] = {
|
|
|
|
{.render = render_carrier, .input = input_carrier},
|
2021-01-07 16:28:35 +00:00
|
|
|
{.render = render_packet, .input = input_packet},
|
2020-10-26 07:27:27 +00:00
|
|
|
};
|
|
|
|
|
2020-10-23 09:39:11 +00:00
|
|
|
const float duty_cycles[] = {0.1, 0.25, 0.333, 0.5, 1.0};
|
|
|
|
|
2020-12-14 10:50:32 +00:00
|
|
|
void render_carrier(Canvas* canvas, State* state) {
|
|
|
|
canvas_set_font(canvas, FontSecondary);
|
|
|
|
canvas_draw_str(canvas, 2, 25, "carrier mode >");
|
|
|
|
canvas_draw_str(canvas, 2, 37, "? /\\ freq | \\/ duty cycle");
|
2020-10-23 09:39:11 +00:00
|
|
|
{
|
|
|
|
char buf[24];
|
2020-10-29 07:58:19 +00:00
|
|
|
sprintf(buf, "frequency: %u Hz", state->carrier_freq);
|
2020-12-14 10:50:32 +00:00
|
|
|
canvas_draw_str(canvas, 2, 50, buf);
|
2020-10-23 09:39:11 +00:00
|
|
|
sprintf(
|
2020-10-29 07:58:19 +00:00
|
|
|
buf, "duty cycle: %d/1000", (int)(duty_cycles[state->carrier_duty_cycle_id] * 1000));
|
2020-12-14 10:50:32 +00:00
|
|
|
canvas_draw_str(canvas, 2, 62, buf);
|
2020-10-23 09:39:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-26 09:26:15 +00:00
|
|
|
void input_carrier(AppEvent* event, State* state) {
|
2021-02-10 08:56:05 +00:00
|
|
|
if(event->value.input.key == InputKeyOk) {
|
|
|
|
if(event->value.input.type == InputTypePress) {
|
2021-05-18 10:51:00 +00:00
|
|
|
api_hal_irda_pwm_set(duty_cycles[state->carrier_duty_cycle_id], state->carrier_freq);
|
2021-02-10 08:56:05 +00:00
|
|
|
} else if(event->value.input.type == InputTypeRelease) {
|
2021-05-18 10:51:00 +00:00
|
|
|
api_hal_irda_pwm_stop();
|
2020-10-23 09:39:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-10 08:56:05 +00:00
|
|
|
if(event->value.input.type == InputTypeShort && event->value.input.key == InputKeyUp) {
|
2020-10-23 09:39:11 +00:00
|
|
|
if(state->carrier_freq < 45000) {
|
|
|
|
state->carrier_freq += 1000;
|
|
|
|
} else {
|
|
|
|
state->carrier_freq = 33000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-10 08:56:05 +00:00
|
|
|
if(event->value.input.type == InputTypeShort && event->value.input.key == InputKeyDown) {
|
2020-10-23 09:39:11 +00:00
|
|
|
uint8_t duty_cycles_count = sizeof(duty_cycles) / sizeof(duty_cycles[0]);
|
|
|
|
if(state->carrier_duty_cycle_id < (duty_cycles_count - 1)) {
|
|
|
|
state->carrier_duty_cycle_id++;
|
|
|
|
} else {
|
|
|
|
state->carrier_duty_cycle_id = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-07 16:28:35 +00:00
|
|
|
void render_packet(Canvas* canvas, State* state) {
|
|
|
|
canvas_set_font(canvas, FontSecondary);
|
|
|
|
canvas_draw_str(canvas, 2, 25, "< packet mode");
|
|
|
|
canvas_draw_str(canvas, 2, 37, "? /\\ \\/ packet");
|
|
|
|
{
|
2021-05-18 10:51:00 +00:00
|
|
|
char buf[30];
|
2021-01-07 16:28:35 +00:00
|
|
|
sprintf(
|
|
|
|
buf,
|
2021-02-01 07:51:22 +00:00
|
|
|
"P[%d]: %s 0x%lX 0x%lX",
|
2021-01-07 16:28:35 +00:00
|
|
|
state->packet_id,
|
2021-05-18 10:51:00 +00:00
|
|
|
irda_get_protocol_name(state->packets[state->packet_id].protocol),
|
2021-01-07 16:28:35 +00:00
|
|
|
state->packets[state->packet_id].address,
|
|
|
|
state->packets[state->packet_id].command);
|
|
|
|
canvas_draw_str(canvas, 2, 50, buf);
|
2020-10-23 09:39:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-07 16:28:35 +00:00
|
|
|
void input_packet(AppEvent* event, State* state) {
|
2021-02-10 08:56:05 +00:00
|
|
|
if(event->value.input.key == InputKeyOk) {
|
|
|
|
if(event->value.input.type == InputTypeShort) {
|
2021-05-18 10:51:00 +00:00
|
|
|
IrdaMessage message = {
|
|
|
|
.protocol = state->packets[state->packet_id].protocol,
|
|
|
|
.address = state->packets[state->packet_id].address,
|
|
|
|
.command = state->packets[state->packet_id].command,
|
|
|
|
};
|
|
|
|
irda_send(&message, 1);
|
2020-10-26 07:27:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-10 08:56:05 +00:00
|
|
|
if(event->value.input.type == InputTypeShort && event->value.input.key == InputKeyDown) {
|
2021-01-07 16:28:35 +00:00
|
|
|
if(state->packet_id < (IRDA_PACKET_COUNT - 1)) {
|
|
|
|
state->packet_id++;
|
|
|
|
};
|
2020-10-26 07:27:27 +00:00
|
|
|
}
|
|
|
|
|
2021-02-10 08:56:05 +00:00
|
|
|
if(event->value.input.type == InputTypeShort && event->value.input.key == InputKeyUp) {
|
2021-01-07 16:28:35 +00:00
|
|
|
if(state->packet_id > 0) {
|
|
|
|
state->packet_id--;
|
|
|
|
};
|
2020-10-26 07:27:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-14 10:50:32 +00:00
|
|
|
static void render_callback(Canvas* canvas, void* ctx) {
|
2020-10-23 09:39:11 +00:00
|
|
|
State* state = (State*)acquire_mutex((ValueMutex*)ctx, 25);
|
|
|
|
|
2021-01-07 16:28:35 +00:00
|
|
|
if(state != NULL) {
|
|
|
|
canvas_clear(canvas);
|
|
|
|
canvas_set_color(canvas, ColorBlack);
|
|
|
|
canvas_set_font(canvas, FontPrimary);
|
|
|
|
canvas_draw_str(canvas, 2, 12, "irda test");
|
2020-10-23 09:39:11 +00:00
|
|
|
|
2021-01-07 16:28:35 +00:00
|
|
|
modes[state->mode_id].render(canvas, state);
|
2020-10-23 09:39:11 +00:00
|
|
|
|
2021-01-07 16:28:35 +00:00
|
|
|
release_mutex((ValueMutex*)ctx, state);
|
|
|
|
}
|
2020-10-23 09:39:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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-23 09:39:11 +00:00
|
|
|
|
2020-10-26 09:26:15 +00:00
|
|
|
AppEvent event;
|
2020-10-23 09:39:11 +00:00
|
|
|
event.type = EventTypeKey;
|
|
|
|
event.value.input = *input_event;
|
|
|
|
osMessageQueuePut(event_queue, &event, 0, 0);
|
|
|
|
}
|
|
|
|
|
2021-01-07 16:28:35 +00:00
|
|
|
void init_packet(
|
|
|
|
State* state,
|
|
|
|
uint8_t index,
|
2021-05-18 10:51:00 +00:00
|
|
|
IrdaProtocol protocol,
|
2021-01-07 16:28:35 +00:00
|
|
|
uint32_t address,
|
|
|
|
uint32_t command) {
|
|
|
|
if(index >= IRDA_PACKET_COUNT) return;
|
|
|
|
state->packets[index].protocol = protocol;
|
|
|
|
state->packets[index].address = address;
|
|
|
|
state->packets[index].command = command;
|
|
|
|
}
|
2020-11-11 07:36:27 +00:00
|
|
|
|
2021-05-18 13:57:39 +00:00
|
|
|
void irda_cli_cmd_rx(Cli* cli, string_t args, void* context) {
|
2021-04-19 16:36:45 +00:00
|
|
|
furi_assert(context);
|
|
|
|
IrDAPacket packet;
|
|
|
|
IrDAApp* app = context;
|
|
|
|
app->cli_cmd_is_active = true;
|
|
|
|
bool exit = false;
|
|
|
|
|
|
|
|
printf("Reading income packets...\r\nPress Ctrl+C to abort\r\n");
|
|
|
|
while(!exit) {
|
|
|
|
exit = cli_cmd_interrupt_received(app->cli);
|
2021-05-18 10:51:00 +00:00
|
|
|
osStatus status = osMessageQueueGet(app->cli_ir_rx_queue, &packet, 0, 5);
|
2021-04-19 16:36:45 +00:00
|
|
|
if(status == osOK) {
|
|
|
|
printf(
|
2021-05-18 10:51:00 +00:00
|
|
|
"%s "
|
|
|
|
"Address:0x%02X Command: 0x%02X %s\r\n",
|
|
|
|
irda_get_protocol_name(packet.protocol),
|
2021-04-19 16:36:45 +00:00
|
|
|
(uint8_t)packet.address,
|
2021-05-18 10:51:00 +00:00
|
|
|
(uint8_t)packet.command,
|
|
|
|
packet.repeat ? "R" : "");
|
2021-04-19 16:36:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
printf("Interrupt command received");
|
|
|
|
app->cli_cmd_is_active = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-05-18 13:57:39 +00:00
|
|
|
void irda_cli_cmd_tx(Cli* cli, string_t args, void* context) {
|
2021-04-19 16:36:45 +00:00
|
|
|
furi_assert(context);
|
|
|
|
ValueMutex* state_mutex = context;
|
|
|
|
// Read protocol name
|
2021-05-18 10:51:00 +00:00
|
|
|
IrdaProtocol protocol;
|
2021-04-19 16:36:45 +00:00
|
|
|
string_t protocol_str;
|
|
|
|
string_init(protocol_str);
|
|
|
|
size_t ws = string_search_char(args, ' ');
|
|
|
|
if(ws == STRING_FAILURE) {
|
|
|
|
printf("Invalid input. Use ir_tx PROTOCOL ADDRESS COMMAND");
|
|
|
|
string_clear(protocol_str);
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
string_set_n(protocol_str, args, 0, ws);
|
|
|
|
string_right(args, ws);
|
|
|
|
string_strim(args);
|
|
|
|
}
|
|
|
|
if(!string_cmp_str(protocol_str, "NEC")) {
|
2021-05-18 10:51:00 +00:00
|
|
|
protocol = IrdaProtocolNEC;
|
2021-04-19 16:36:45 +00:00
|
|
|
} else if(!string_cmp_str(protocol_str, "SAMSUNG")) {
|
2021-05-18 10:51:00 +00:00
|
|
|
protocol = IrdaProtocolSamsung32;
|
2021-04-19 16:36:45 +00:00
|
|
|
} else {
|
|
|
|
printf("Incorrect protocol. Valid protocols: `NEC`, `SAMSUNG`");
|
|
|
|
string_clear(protocol_str);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
string_clear(protocol_str);
|
|
|
|
// Read address
|
|
|
|
uint16_t address = strtoul(string_get_cstr(args), NULL, 16);
|
|
|
|
ws = string_search_char(args, ' ');
|
|
|
|
if(!(ws == 4 || ws == 6)) {
|
|
|
|
printf("Invalid address format. Use 4 [0-F] hex digits in 0xXXXX or XXXX formats");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
string_right(args, ws);
|
|
|
|
string_strim(args);
|
|
|
|
// Read command
|
|
|
|
uint16_t command = strtoul(string_get_cstr(args), NULL, 16);
|
|
|
|
ws = string_search_char(args, '\0');
|
|
|
|
if(!(ws == 4 || ws == 6)) {
|
|
|
|
printf("Invalid command format. Use 4 [0-F] hex digits in 0xXXXX or XXXX formats");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
State* state = (State*)acquire_mutex(state_mutex, 25);
|
|
|
|
if(state == NULL) {
|
|
|
|
printf("IRDA resources busy\r\n");
|
|
|
|
return;
|
|
|
|
}
|
2021-05-18 10:51:00 +00:00
|
|
|
|
|
|
|
IrdaMessage message = {
|
|
|
|
.protocol = protocol,
|
|
|
|
.address = address,
|
|
|
|
.command = command,
|
|
|
|
};
|
|
|
|
irda_send(&message, 1);
|
2021-04-19 16:36:45 +00:00
|
|
|
release_mutex(state_mutex, state);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-05-18 10:51:00 +00:00
|
|
|
typedef struct {
|
|
|
|
osMessageQueueId_t event_queue;
|
|
|
|
IrdaHandler* handler;
|
|
|
|
} IsrContext;
|
|
|
|
|
|
|
|
void irda_rx_callback(void* ctx, bool level, uint32_t duration) {
|
|
|
|
IsrContext* isr_context = ctx;
|
|
|
|
const IrdaMessage* message = irda_decode(isr_context->handler, level, duration);
|
|
|
|
AppEvent event;
|
|
|
|
event.type = EventTypeRX;
|
|
|
|
|
|
|
|
if(message) {
|
|
|
|
event.value.rx = *message;
|
|
|
|
furi_assert(osOK == osMessageQueuePut(isr_context->event_queue, &event, 0, 0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-12 17:24:34 +00:00
|
|
|
int32_t irda(void* p) {
|
2020-11-11 07:36:27 +00:00
|
|
|
osMessageQueueId_t event_queue = osMessageQueueNew(32, sizeof(AppEvent), NULL);
|
2020-10-23 09:39:11 +00:00
|
|
|
|
|
|
|
State _state;
|
|
|
|
uint8_t mode_count = sizeof(modes) / sizeof(modes[0]);
|
|
|
|
uint8_t duty_cycles_count = sizeof(duty_cycles) / sizeof(duty_cycles[0]);
|
|
|
|
|
|
|
|
_state.carrier_duty_cycle_id = duty_cycles_count - 2;
|
|
|
|
_state.carrier_freq = 36000;
|
|
|
|
_state.mode_id = 0;
|
2021-01-07 16:28:35 +00:00
|
|
|
_state.packet_id = 0;
|
|
|
|
|
2021-04-19 16:36:45 +00:00
|
|
|
IrDAApp irda_app;
|
|
|
|
irda_app.cli = furi_record_open("cli");
|
|
|
|
irda_app.cli_ir_rx_queue = osMessageQueueNew(1, sizeof(IrDAPacket), NULL);
|
|
|
|
irda_app.cli_cmd_is_active = false;
|
|
|
|
|
2021-01-07 16:28:35 +00:00
|
|
|
for(uint8_t i = 0; i < IRDA_PACKET_COUNT; i++) {
|
2021-05-18 10:51:00 +00:00
|
|
|
init_packet(&_state, i, 0, 0, 0);
|
2021-01-07 16:28:35 +00:00
|
|
|
}
|
|
|
|
|
2021-05-18 10:51:00 +00:00
|
|
|
init_packet(&_state, 0, IrdaProtocolNEC, 0x00, 0x11);
|
|
|
|
init_packet(&_state, 1, IrdaProtocolNEC, 0x08, 0x59);
|
|
|
|
init_packet(&_state, 2, IrdaProtocolNEC, 0x00, 0x10);
|
|
|
|
init_packet(&_state, 3, IrdaProtocolNEC, 0x00, 0x15);
|
|
|
|
init_packet(&_state, 4, IrdaProtocolNEC, 0x00, 0x25);
|
|
|
|
init_packet(&_state, 5, IrdaProtocolSamsung32, 0x0E, 0x0C);
|
|
|
|
init_packet(&_state, 6, IrdaProtocolSamsung32, 0x0E, 0x0D);
|
|
|
|
init_packet(&_state, 7, IrdaProtocolSamsung32, 0x0E, 0x0E);
|
2020-10-23 09:39:11 +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-23 09:39:11 +00:00
|
|
|
}
|
|
|
|
|
2021-01-29 13:52:16 +00:00
|
|
|
ViewPort* view_port = view_port_alloc();
|
2020-10-23 09:39:11 +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-23 09:39:11 +00:00
|
|
|
|
2021-04-19 16:36:45 +00:00
|
|
|
cli_add_command(irda_app.cli, "ir_rx", irda_cli_cmd_rx, &irda_app);
|
|
|
|
cli_add_command(irda_app.cli, "ir_tx", irda_cli_cmd_tx, &state_mutex);
|
|
|
|
|
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-23 09:39:11 +00:00
|
|
|
|
2021-05-18 10:51:00 +00:00
|
|
|
IsrContext isr_context = {
|
|
|
|
.handler = irda_alloc_decoder(),
|
|
|
|
.event_queue = event_queue,
|
|
|
|
};
|
|
|
|
api_hal_irda_rx_irq_init();
|
|
|
|
api_hal_irda_rx_irq_set_callback(irda_rx_callback, &isr_context);
|
2021-01-07 16:28:35 +00:00
|
|
|
|
2020-10-26 09:26:15 +00:00
|
|
|
AppEvent event;
|
2020-10-23 09:39:11 +00:00
|
|
|
while(1) {
|
2021-01-07 16:28:35 +00:00
|
|
|
osStatus_t event_status = osMessageQueueGet(event_queue, &event, NULL, 500);
|
2020-10-23 09:39:11 +00:00
|
|
|
|
|
|
|
if(event_status == osOK) {
|
|
|
|
if(event.type == EventTypeKey) {
|
2021-02-12 15:44:14 +00:00
|
|
|
State* state = (State*)acquire_mutex_block(&state_mutex);
|
|
|
|
|
2020-10-23 09:39:11 +00:00
|
|
|
// press events
|
2021-02-10 08:56:05 +00:00
|
|
|
if(event.value.input.type == InputTypeShort &&
|
|
|
|
event.value.input.key == InputKeyBack) {
|
2021-02-12 15:44:14 +00:00
|
|
|
release_mutex(&state_mutex, state);
|
|
|
|
|
2021-01-29 13:52:16 +00:00
|
|
|
// remove all view_ports create by app
|
|
|
|
gui_remove_view_port(gui, view_port);
|
2021-02-12 15:44:14 +00:00
|
|
|
view_port_free(view_port);
|
2021-01-07 16:28:35 +00:00
|
|
|
|
|
|
|
// free decoder
|
2021-02-12 15:44:14 +00:00
|
|
|
delete_mutex(&state_mutex);
|
|
|
|
osMessageQueueDelete(event_queue);
|
2021-04-19 16:36:45 +00:00
|
|
|
osMessageQueueDelete(irda_app.cli_ir_rx_queue);
|
|
|
|
cli_delete_command(irda_app.cli, "ir_rx");
|
|
|
|
cli_delete_command(irda_app.cli, "ir_tx");
|
|
|
|
furi_record_close("cli");
|
2021-05-18 10:51:00 +00:00
|
|
|
api_hal_irda_rx_irq_deinit();
|
|
|
|
irda_free_decoder(isr_context.handler);
|
2021-02-12 15:44:14 +00:00
|
|
|
|
2021-01-07 16:28:35 +00:00
|
|
|
// exit
|
2021-02-12 17:24:34 +00:00
|
|
|
return 0;
|
2020-10-23 09:39:11 +00:00
|
|
|
}
|
|
|
|
|
2021-02-10 08:56:05 +00:00
|
|
|
if(event.value.input.type == InputTypeShort &&
|
|
|
|
event.value.input.key == InputKeyLeft) {
|
2020-10-23 09:39:11 +00:00
|
|
|
if(state->mode_id > 0) {
|
|
|
|
state->mode_id--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-10 08:56:05 +00:00
|
|
|
if(event.value.input.type == InputTypeShort &&
|
|
|
|
event.value.input.key == InputKeyRight) {
|
2020-10-23 09:39:11 +00:00
|
|
|
if(state->mode_id < (mode_count - 1)) {
|
|
|
|
state->mode_id++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
modes[state->mode_id].input(&event, state);
|
2021-02-12 15:44:14 +00:00
|
|
|
|
|
|
|
release_mutex(&state_mutex, state);
|
|
|
|
view_port_update(view_port);
|
|
|
|
|
2020-11-11 07:36:27 +00:00
|
|
|
} else if(event.type == EventTypeRX) {
|
2021-05-18 10:51:00 +00:00
|
|
|
api_hal_light_set(LightRed, 0xFF);
|
|
|
|
delay(60);
|
|
|
|
api_hal_light_set(LightRed, 0xFF);
|
|
|
|
|
|
|
|
// save only if we in packet mode
|
|
|
|
State* state = (State*)acquire_mutex_block(&state_mutex);
|
|
|
|
IrDAPacket packet = event.value.rx;
|
|
|
|
|
|
|
|
if(state->mode_id == 1) {
|
|
|
|
printf("P=%s ", irda_get_protocol_name(packet.protocol));
|
|
|
|
printf("A=0x%02lX ", packet.address);
|
|
|
|
printf("C=0x%02lX ", packet.command);
|
|
|
|
if(packet.repeat) {
|
|
|
|
printf("R");
|
2021-04-19 16:36:45 +00:00
|
|
|
}
|
2021-05-18 10:51:00 +00:00
|
|
|
printf("\r\n");
|
|
|
|
// Save packet to state
|
|
|
|
memcpy(&(state->packets[state->packet_id]), &packet, sizeof(IrDAPacket));
|
|
|
|
}
|
|
|
|
if(irda_app.cli_cmd_is_active) {
|
|
|
|
// Send decoded packet to cli
|
|
|
|
osMessageQueuePut(irda_app.cli_ir_rx_queue, &packet, 0, 0);
|
|
|
|
}
|
2021-01-07 16:28:35 +00:00
|
|
|
|
2021-05-18 10:51:00 +00:00
|
|
|
release_mutex(&state_mutex, state);
|
|
|
|
view_port_update(view_port);
|
2021-02-12 15:44:14 +00:00
|
|
|
|
2021-05-18 10:51:00 +00:00
|
|
|
// blink anyway
|
|
|
|
api_hal_light_set(LightGreen, 0xFF);
|
|
|
|
api_hal_light_set(LightGreen, 0x00);
|
2020-10-23 09:39:11 +00:00
|
|
|
}
|
2020-11-11 07:36:27 +00:00
|
|
|
|
2020-10-23 09:39:11 +00:00
|
|
|
} else {
|
|
|
|
// event timeout
|
|
|
|
}
|
|
|
|
}
|
2021-05-18 10:51:00 +00:00
|
|
|
}
|