SC-F001 way better logging and parameters. not integrated yet but.

This commit is contained in:
Thaddeus Hughes
2025-12-13 10:57:09 -06:00
commit ac030005c3
505 changed files with 174645 additions and 0 deletions

26
main/rf.h Normal file
View File

@@ -0,0 +1,26 @@
#ifndef RF_H
#define RF_H
#include <inttypes.h>
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/queue.h"
#define NUM_RF_BUTTONS 4
int64_t recieveKeycode();
void start_rf();
void rf_set_keycode(uint8_t index, int64_t code);
int8_t rf_get_keycode();
int64_t rf_get_raw_keycode();
void rf_clear_queue();
#endif