22 lines
451 B
C
22 lines
451 B
C
/*
|
||
* App_Auto.h
|
||
*
|
||
* Created on: Apr 16, 2026
|
||
* Author: monosail
|
||
*/
|
||
|
||
#ifndef APP_AUTO_H_
|
||
#define APP_AUTO_H_
|
||
#include "mymidififo1.h"
|
||
#include <stdint.h>
|
||
|
||
extern void App_Auto_Init(void);
|
||
|
||
/* 统一加载入口:记录成功/失败,失败时 Stop,避免空库起奏进 ISR 崩溃 */
|
||
int App_Auto_LoadPresetFromFlash(int presetIndex);
|
||
uint8_t App_Auto_IsPresetReady(void);
|
||
|
||
extern MidiFifoSeq_t m_MidiSendFifo;
|
||
|
||
#endif /* APP_AUTO_H_ */
|