You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
449 B
38 lines
449 B
/*
|
|
* File: OLED.h
|
|
* Author: Sparky
|
|
*
|
|
* Created on ?????, 2014, ??? 16, 18:51
|
|
*/
|
|
|
|
#ifndef OLED_H
|
|
#define OLED_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifndef _OLED_C
|
|
#define OLEDC_EXTERN extern
|
|
#else
|
|
#define OLEDC_EXTERN
|
|
#endif
|
|
|
|
OLEDC_EXTERN union {
|
|
UINT32 D[8][32];
|
|
UINT8 B[8][128];
|
|
}OLEDBUFF;
|
|
|
|
OLEDC_EXTERN void OLEDInit();
|
|
OLEDC_EXTERN void OLEDUpdate();
|
|
|
|
#undef OLEDC_EXTERN
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* OLED_H */
|
|
|