 5ed9bdbc37
			
		
	
	
		5ed9bdbc37
		
			
		
	
	
	
	
		
			
			* [FL-1652] IRDA: Continuous transmitting * continuous encoding and sending signals by pressing button on menu * fast buttons scrolling in remote menu * bruteforce: stop reading file if progress == 100% * IRDA: .hpp -> .h * [FL-1554] IRDA: xTaskNotify -> osEventsFlagSet * IRDA: some stability fixes * Irda: minor cleanup, api-hal to furi-hal rename. Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			75 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "../irda-app.h"
 | |
| #include "../irda-app-event.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);
 | |
|         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);
 | |
| 
 | |
|     if(app->get_learn_new_remote()) {
 | |
|         app->notify_double_vibro();
 | |
|     }
 | |
| 
 | |
|     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());
 | |
| }
 |