mirror of
https://gitee.com/lzc56/MiaoUI.git
synced 2025-07-18 09:42:08 +00:00
18 lines
299 B
C
18 lines
299 B
C
/* u8g2_d_memory.c */
|
|
/* generated code, codebuild, u8g2 project */
|
|
|
|
#include "u8g2.h"
|
|
|
|
uint8_t *u8g2_m_16_8_f(uint8_t *page_cnt)
|
|
{
|
|
#ifdef U8G2_USE_DYNAMIC_ALLOC
|
|
*page_cnt = 8;
|
|
return 0;
|
|
#else
|
|
static uint8_t buf[1024];
|
|
*page_cnt = 8;
|
|
return buf;
|
|
#endif
|
|
}
|
|
/* end of generated code */
|