202 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			202 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "subghz_test_basic.h"
 | |
| #include "../subghz_i.h"
 | |
| 
 | |
| #include <math.h>
 | |
| #include <furi.h>
 | |
| #include <furi-hal.h>
 | |
| #include <input/input.h>
 | |
| 
 | |
| struct SubghzTestBasic {
 | |
|     View* view;
 | |
|     osTimerId timer;
 | |
| };
 | |
| 
 | |
| typedef enum {
 | |
|     SubghzTestBasicModelStatusRx,
 | |
|     SubghzTestBasicModelStatusTx,
 | |
| } SubghzTestBasicModelStatus;
 | |
| 
 | |
| typedef struct {
 | |
|     uint8_t frequency;
 | |
|     uint32_t real_frequency;
 | |
|     FuriHalSubGhzPath path;
 | |
|     float rssi;
 | |
|     SubghzTestBasicModelStatus status;
 | |
| } SubghzTestBasicModel;
 | |
| 
 | |
| void subghz_test_basic_draw(Canvas* canvas, SubghzTestBasicModel* model) {
 | |
|     char buffer[64];
 | |
| 
 | |
|     canvas_set_color(canvas, ColorBlack);
 | |
|     canvas_set_font(canvas, FontPrimary);
 | |
|     canvas_draw_str(canvas, 0, 8, "CC1101 Basic Test");
 | |
| 
 | |
|     canvas_set_font(canvas, FontSecondary);
 | |
|     // Frequency
 | |
|     snprintf(
 | |
|         buffer,
 | |
|         sizeof(buffer),
 | |
|         "Freq: %03ld.%03ld.%03ld Hz",
 | |
|         model->real_frequency / 1000000 % 1000,
 | |
|         model->real_frequency / 1000 % 1000,
 | |
|         model->real_frequency % 1000);
 | |
|     canvas_draw_str(canvas, 0, 20, buffer);
 | |
|     // Path
 | |
|     char* path_name = "Unknown";
 | |
|     if(model->path == FuriHalSubGhzPathIsolate) {
 | |
|         path_name = "isolate";
 | |
|     } else if(model->path == FuriHalSubGhzPath433) {
 | |
|         path_name = "433MHz";
 | |
|     } else if(model->path == FuriHalSubGhzPath315) {
 | |
|         path_name = "315MHz";
 | |
|     } else if(model->path == FuriHalSubGhzPath868) {
 | |
|         path_name = "868MHz";
 | |
|     }
 | |
|     snprintf(buffer, sizeof(buffer), "Path: %d - %s", model->path, path_name);
 | |
|     canvas_draw_str(canvas, 0, 31, buffer);
 | |
|     if(model->status == SubghzTestBasicModelStatusRx) {
 | |
|         snprintf(
 | |
|             buffer,
 | |
|             sizeof(buffer),
 | |
|             "RSSI: %ld.%ld dBm",
 | |
|             (int32_t)(model->rssi),
 | |
|             (int32_t)fabs(model->rssi * 10) % 10);
 | |
|         canvas_draw_str(canvas, 0, 42, buffer);
 | |
|     } else {
 | |
|         canvas_draw_str(canvas, 0, 42, "TX");
 | |
|     }
 | |
| }
 | |
| 
 | |
| bool subghz_test_basic_input(InputEvent* event, void* context) {
 | |
|     furi_assert(context);
 | |
|     SubghzTestBasic* subghz_test_basic = context;
 | |
| 
 | |
|     if(event->key == InputKeyBack) {
 | |
|         return false;
 | |
|     }
 | |
| 
 | |
|     with_view_model(
 | |
|         subghz_test_basic->view, (SubghzTestBasicModel * model) {
 | |
|             osTimerStop(subghz_test_basic->timer);
 | |
|             furi_hal_subghz_idle();
 | |
| 
 | |
|             if(event->type == InputTypeShort) {
 | |
|                 if(event->key == InputKeyLeft) {
 | |
|                     if(model->frequency > 0) model->frequency--;
 | |
|                 } else if(event->key == InputKeyRight) {
 | |
|                     if(model->frequency < subghz_frequencies_count - 1) model->frequency++;
 | |
|                 } else if(event->key == InputKeyDown) {
 | |
|                     if(model->path > 0) model->path--;
 | |
|                 } else if(event->key == InputKeyUp) {
 | |
|                     if(model->path < FuriHalSubGhzPath868) model->path++;
 | |
|                 } else if(event->key == InputKeyOk) {
 | |
|                     if(model->status == SubghzTestBasicModelStatusTx) {
 | |
|                         model->status = SubghzTestBasicModelStatusRx;
 | |
|                     } else {
 | |
|                         model->status = SubghzTestBasicModelStatusTx;
 | |
|                     }
 | |
|                 }
 | |
| 
 | |
|                 model->real_frequency =
 | |
|                     furi_hal_subghz_set_frequency(subghz_frequencies[model->frequency]);
 | |
|                 furi_hal_subghz_set_path(model->path);
 | |
|             }
 | |
| 
 | |
|             if(model->status == SubghzTestBasicModelStatusRx) {
 | |
|                 hal_gpio_init(&gpio_cc1101_g0, GpioModeInput, GpioPullNo, GpioSpeedLow);
 | |
|                 furi_hal_subghz_rx();
 | |
|                 osTimerStart(subghz_test_basic->timer, 1024 / 4);
 | |
|             } else {
 | |
|                 hal_gpio_init(&gpio_cc1101_g0, GpioModeOutputPushPull, GpioPullNo, GpioSpeedLow);
 | |
|                 hal_gpio_write(&gpio_cc1101_g0, true);
 | |
|                 furi_hal_subghz_tx();
 | |
|             }
 | |
| 
 | |
|             return true;
 | |
|         });
 | |
| 
 | |
|     return true;
 | |
| }
 | |
| 
 | |
| void subghz_test_basic_enter(void* context) {
 | |
|     furi_assert(context);
 | |
|     SubghzTestBasic* subghz_test_basic = context;
 | |
| 
 | |
|     furi_hal_subghz_reset();
 | |
|     furi_hal_subghz_load_preset(FuriHalSubGhzPresetOokAsync);
 | |
| 
 | |
|     hal_gpio_init(&gpio_cc1101_g0, GpioModeInput, GpioPullNo, GpioSpeedLow);
 | |
| 
 | |
|     with_view_model(
 | |
|         subghz_test_basic->view, (SubghzTestBasicModel * model) {
 | |
|             model->frequency = subghz_frequencies_433_92; // 433
 | |
|             model->real_frequency =
 | |
|                 furi_hal_subghz_set_frequency(subghz_frequencies[model->frequency]);
 | |
|             model->path = FuriHalSubGhzPathIsolate; // isolate
 | |
|             model->rssi = 0.0f;
 | |
|             model->status = SubghzTestBasicModelStatusRx;
 | |
|             return true;
 | |
|         });
 | |
| 
 | |
|     furi_hal_subghz_rx();
 | |
| 
 | |
|     osTimerStart(subghz_test_basic->timer, 1024 / 4);
 | |
| }
 | |
| 
 | |
| void subghz_test_basic_exit(void* context) {
 | |
|     furi_assert(context);
 | |
|     SubghzTestBasic* subghz_test_basic = context;
 | |
| 
 | |
|     osTimerStop(subghz_test_basic->timer);
 | |
| 
 | |
|     // Reinitialize IC to default state
 | |
|     furi_hal_subghz_sleep();
 | |
| }
 | |
| 
 | |
| void subghz_test_basic_rssi_timer_callback(void* context) {
 | |
|     furi_assert(context);
 | |
|     SubghzTestBasic* subghz_test_basic = context;
 | |
| 
 | |
|     with_view_model(
 | |
|         subghz_test_basic->view, (SubghzTestBasicModel * model) {
 | |
|             model->rssi = furi_hal_subghz_get_rssi();
 | |
|             return true;
 | |
|         });
 | |
| }
 | |
| 
 | |
| uint32_t subghz_test_basic_back(void* context) {
 | |
|     return SubGhzViewMenu;
 | |
| }
 | |
| 
 | |
| SubghzTestBasic* subghz_test_basic_alloc() {
 | |
|     SubghzTestBasic* subghz_test_basic = furi_alloc(sizeof(SubghzTestBasic));
 | |
| 
 | |
|     // View allocation and configuration
 | |
|     subghz_test_basic->view = view_alloc();
 | |
|     view_allocate_model(
 | |
|         subghz_test_basic->view, ViewModelTypeLockFree, sizeof(SubghzTestBasicModel));
 | |
|     view_set_context(subghz_test_basic->view, subghz_test_basic);
 | |
|     view_set_draw_callback(subghz_test_basic->view, (ViewDrawCallback)subghz_test_basic_draw);
 | |
|     view_set_input_callback(subghz_test_basic->view, subghz_test_basic_input);
 | |
|     view_set_enter_callback(subghz_test_basic->view, subghz_test_basic_enter);
 | |
|     view_set_exit_callback(subghz_test_basic->view, subghz_test_basic_exit);
 | |
|     view_set_previous_callback(subghz_test_basic->view, subghz_test_basic_back);
 | |
| 
 | |
|     subghz_test_basic->timer = osTimerNew(
 | |
|         subghz_test_basic_rssi_timer_callback, osTimerPeriodic, subghz_test_basic, NULL);
 | |
| 
 | |
|     return subghz_test_basic;
 | |
| }
 | |
| 
 | |
| void subghz_test_basic_free(SubghzTestBasic* subghz_test_basic) {
 | |
|     furi_assert(subghz_test_basic);
 | |
|     osTimerDelete(subghz_test_basic->timer);
 | |
|     view_free(subghz_test_basic->view);
 | |
|     free(subghz_test_basic);
 | |
| }
 | |
| 
 | |
| View* subghz_test_basic_get_view(SubghzTestBasic* subghz_test_basic) {
 | |
|     furi_assert(subghz_test_basic);
 | |
|     return subghz_test_basic->view;
 | |
| }
 | 
