mirror of
https://github.com/jhbruhn/eurorack.git
synced 2025-03-15 02:55:49 +00:00
19 lines
416 B
C++
19 lines
416 B
C++
#pragma once
|
|
|
|
#include <stmlib/stmlib.h>
|
|
#include <U8x8lib.h>
|
|
|
|
extern uint8_t u8x8_stm32_gpio_and_delay(U8X8_UNUSED u8x8_t* u8x8,
|
|
U8X8_UNUSED uint8_t msg, U8X8_UNUSED uint8_t arg_int,
|
|
U8X8_UNUSED void* arg_ptr);
|
|
|
|
extern uint8_t u8x8_byte_4wire_stm32_spi(u8x8_t* u8x8, uint8_t msg, uint8_t arg_int,
|
|
void* arg_ptr);
|
|
|
|
class BaseDisplay {
|
|
public:
|
|
void Init();
|
|
|
|
protected:
|
|
virtual void InitGLib();
|
|
};
|