2026-08-26 07:26:58 +08:00
|
|
|
|
/*
|
|
|
|
|
|
* App_Auto.h
|
|
|
|
|
|
*
|
|
|
|
|
|
* Created on: Apr 16, 2026
|
|
|
|
|
|
* Author: monosail
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef APP_AUTO_H_
|
|
|
|
|
|
#define APP_AUTO_H_
|
|
|
|
|
|
#include "mymidififo1.h"
|
2026-09-14 20:19:45 +08:00
|
|
|
|
#include <stdint.h>
|
2026-08-26 07:26:58 +08:00
|
|
|
|
|
|
|
|
|
|
extern void App_Auto_Init(void);
|
|
|
|
|
|
|
2026-09-14 20:19:45 +08:00
|
|
|
|
/* 统一加载入口:记录成功/失败,失败时 Stop,避免空库起奏进 ISR 崩溃 */
|
|
|
|
|
|
int App_Auto_LoadPresetFromFlash(int presetIndex);
|
|
|
|
|
|
uint8_t App_Auto_IsPresetReady(void);
|
|
|
|
|
|
|
2026-08-26 07:26:58 +08:00
|
|
|
|
extern MidiFifoSeq_t m_MidiSendFifo;
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* APP_AUTO_H_ */
|