* IR app move to FFF * [FL-2164] Hide unimplemented submenus * Fix brute force fail * Fix FFF endless reading * Reformat TV bruteforce lib to FFF * fixes & cleanup * Infrared: switch to constexpr. Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			73 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "../irda_app.h"
 | 
						|
#include "../irda_app_event.h"
 | 
						|
#include "irda.h"
 | 
						|
#include <irda_worker.h>
 | 
						|
 | 
						|
static void signal_received_callback(void* context, IrdaWorkerSignal* received_signal) {
 | 
						|
    furi_assert(context);
 | 
						|
    furi_assert(received_signal);
 | 
						|
 | 
						|
    IrdaApp* app = static_cast<IrdaApp*>(context);
 | 
						|
 | 
						|
    if(irda_worker_signal_is_decoded(received_signal)) {
 | 
						|
        IrdaAppSignal signal(irda_worker_get_decoded_signal(received_signal));
 | 
						|
        app->set_received_signal(signal);
 | 
						|
    } else {
 | 
						|
        const uint32_t* timings;
 | 
						|
        size_t timings_cnt;
 | 
						|
        irda_worker_get_raw_signal(received_signal, &timings, &timings_cnt);
 | 
						|
        IrdaAppSignal signal(
 | 
						|
            timings, timings_cnt, IRDA_COMMON_CARRIER_FREQUENCY, IRDA_COMMON_DUTY_CYCLE);
 | 
						|
        app->set_received_signal(signal);
 | 
						|
    }
 | 
						|
 | 
						|
    irda_worker_rx_set_received_signal_callback(app->get_irda_worker(), NULL, NULL);
 | 
						|
    IrdaAppEvent event;
 | 
						|
    event.type = IrdaAppEvent::Type::IrdaMessageReceived;
 | 
						|
    auto view_manager = app->get_view_manager();
 | 
						|
    view_manager->send_event(&event);
 | 
						|
}
 | 
						|
 | 
						|
void IrdaAppSceneLearn::on_enter(IrdaApp* app) {
 | 
						|
    auto view_manager = app->get_view_manager();
 | 
						|
    auto popup = view_manager->get_popup();
 | 
						|
 | 
						|
    auto worker = app->get_irda_worker();
 | 
						|
    irda_worker_rx_set_received_signal_callback(worker, signal_received_callback, app);
 | 
						|
    irda_worker_rx_start(worker);
 | 
						|
 | 
						|
    popup_set_icon(popup, 0, 32, &I_IrdaLearnShort_128x31);
 | 
						|
    popup_set_text(
 | 
						|
        popup, "Point the remote at IR port\nand push the button", 5, 10, AlignLeft, AlignCenter);
 | 
						|
    popup_set_callback(popup, NULL);
 | 
						|
 | 
						|
    view_manager->switch_to(IrdaAppViewManager::ViewType::Popup);
 | 
						|
}
 | 
						|
 | 
						|
bool IrdaAppSceneLearn::on_event(IrdaApp* app, IrdaAppEvent* event) {
 | 
						|
    bool consumed = false;
 | 
						|
 | 
						|
    switch(event->type) {
 | 
						|
    case IrdaAppEvent::Type::Tick:
 | 
						|
        consumed = true;
 | 
						|
        app->notify_red_blink();
 | 
						|
        break;
 | 
						|
    case IrdaAppEvent::Type::IrdaMessageReceived:
 | 
						|
        app->notify_success();
 | 
						|
        app->switch_to_next_scene_without_saving(IrdaApp::Scene::LearnSuccess);
 | 
						|
        break;
 | 
						|
    case IrdaAppEvent::Type::Back:
 | 
						|
        consumed = true;
 | 
						|
        app->switch_to_previous_scene();
 | 
						|
        break;
 | 
						|
    default:
 | 
						|
        furi_assert(0);
 | 
						|
    }
 | 
						|
 | 
						|
    return consumed;
 | 
						|
}
 | 
						|
 | 
						|
void IrdaAppSceneLearn::on_exit(IrdaApp* app) {
 | 
						|
    irda_worker_rx_stop(app->get_irda_worker());
 | 
						|
}
 |