removed support for CC25XX SOC

This commit is contained in:
strawmanbobi
2025-10-24 17:13:49 +08:00
parent 56a4ee17ef
commit c49c09879f
4 changed files with 4 additions and 13 deletions

View File

@@ -29,10 +29,6 @@ extern "C"
#define LOG_TAG "ir_decode"
#endif
#if defined BOARD_CC26XX
#include "OSAL.h"
#endif
#define TRUE 1
#define FALSE 0
@@ -55,13 +51,8 @@ typedef int BOOL;
void noprint(const char *fmt, ...);
#if defined BOARD_CC26XX
#define ir_malloc(A) ICall_malloc(A)
#define ir_free(A) ICall_free(A)
#else
#define ir_malloc(A) malloc(A)
#define ir_free(A) free(A)
#endif
#define ir_memcpy(A, B, C) memcpy(A, B, C)
#define ir_memset(A, B, C) memset(A, B, C)