-
Notifications
You must be signed in to change notification settings - Fork 1
/
ssd1306_conf.h
77 lines (62 loc) · 1.9 KB
/
ssd1306_conf.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/**
* Private configuration file for the SSD1306 library.
* This example is configured for STM32F0, I2C and including all fonts.
*/
#ifndef __SSD1306_CONF_H__
#define __SSD1306_CONF_H__
#include "gpiodef.h"
// Choose a microcontroller family
//#define STM32F0
//#define STM32F1
//#define STM32F4
//#define STM32L0
//#define STM32L1
//#define STM32L4
//#define STM32F3
//#define STM32H7
//#define STM32F7
//#define STM32G0
#ifdef __cplusplus
extern "C" {
#endif
// Choose a bus
//#define SSD1306_USE_I2C
#define SSD1306_USE_SPI
// I2C Configuration
//#define SSD1306_I2C_PORT hi2c1
//#define SSD1306_I2C_ADDR (0x3C << 1)
// SPI Configuration
#define SSD1306_SPI_PORT hspi1
#define SSD1306_CS_Port LCD_CS_P
#define SSD1306_CS_Pin LCD_CS
#define SSD1306_DC_Port LCD_CD_P
#define SSD1306_DC_Pin LCD_CD
#define SSD1306_Reset_Port LCD_RST_P
#define SSD1306_Reset_Pin LCD_RST
// Mirror the screen if needed
// #define SSD1306_MIRROR_VERT
// #define SSD1306_MIRROR_HORIZ
// Set inverse color if needed
// # define SSD1306_INVERSE_COLOR
// Include only needed fonts
//#define SSD1306_INCLUDE_FONT_5x7
#define SSD1306_INCLUDE_FONT_6x8
//#define SSD1306_INCLUDE_FONT16_6x8
//#define SSD1306_INCLUDE_FONT_7x10
//#define SSD1306_INCLUDE_FONT_11x18
//#define SSD1306_INCLUDE_FONT_16x26
//#define SSD1306_INCLUDE_FONT_16x24
// The width of the screen can be set using this
// define. The default value is 128.
#define SSD1306_WIDTH 128
// If your screen horizontal axis does not start
// in column 0 you can use this define to
// adjust the horizontal offset
// #define SSD1306_X_OFFSET
// The height can be changed as well if necessary.
// It can be 32, 64 or 128. The default value is 64.
#define SSD1306_HEIGHT 64
#ifdef __cplusplus
}
#endif
#endif /* __SSD1306_CONF_H__ */