// // kernel.h // // mt32-pi - A baremetal MIDI synthesizer for Raspberry Pi // Copyright (C) 2020-2023 Dale Whinham // // This file is part of mt32-pi. // // mt32-pi is free software: you can redistribute it and/or modify it under the // terms of the GNU General Public License as published by the Free Software // Foundation, either version 3 of the License, or (at your option) any later // version. // // mt32-pi is distributed in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // FOR A PARTICULAR PURPOSE. See the GNU General Public License for more // details. // // You should have received a copy of the GNU General Public License along with // mt32-pi. If not, see . // #ifndef _kernel_h #define _kernel_h #include #include #include #include #include #include #include #include #include "config.h" #include "mt32pi.h" #include "zoneallocator.h" class CKernel : public CStdlibApp { public: CKernel(void); virtual bool Initialize(void) override; TShutdownMode Run(void) override; protected: CCPUThrottle m_CPUThrottle; CSerialDevice m_Serial; #ifdef HDMI_CONSOLE CScreenDevice m_Screen; #endif CTimer m_Timer; CLogger m_Logger; CScheduler m_Scheduler; CUSBHCIDevice m_USBHCI; CEMMCDevice m_EMMC; FATFS m_SDFileSystem; CI2CMaster m_I2CMaster; CSPIMaster m_SPIMaster; CGPIOManager m_GPIOManager; private: CZoneAllocator m_Allocator; CConfig m_Config; CMT32Pi m_MT32Pi; }; #endif