Transition to PlatformIO

This commit is contained in:
2026-01-05 11:53:35 +01:00
parent a31a73607b
commit 59f85a375d
666 changed files with 485454 additions and 7608 deletions

11
include/Tuner_Interface.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef TUNER_INTERFACE_H
#define TUNER_INTERFACE_H
void Tuner_I2C_Init();
void Tuner_Patch(byte TEF);
void Tuner_Init(const unsigned char *table);
bool Tuner_WriteBuffer(unsigned char *buf, uint16_t len);
bool Tuner_ReadBuffer(unsigned char *buf, uint16_t len);
bool Tuner_Table_Write(const unsigned char *tab);
void Tuner_Reset(void);
#endif