-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDEV_Config.cpp
More file actions
110 lines (96 loc) · 3.14 KB
/
Copy pathDEV_Config.cpp
File metadata and controls
110 lines (96 loc) · 3.14 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*****************************************************************************
* | File : DEV_Config.c
* | Author : Waveshare team
* | Function : Hardware underlying interface
* | Info :
*----------------
* | This version: V1.0
* | Date : 2020-02-19
* | Info :
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documnetation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS OR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
******************************************************************************/
#include "DEV_Config.h"
#include <SPI.h>
static const uint32_t EPD_SPI_HZ = 12000000;
void GPIO_Config(void)
{
#if D_9PIN
pinMode(EPD_PWR_PIN, OUTPUT);
digitalWrite(EPD_PWR_PIN , HIGH);
#endif
pinMode(EPD_BUSY_PIN, INPUT);
pinMode(EPD_RST_PIN , OUTPUT);
pinMode(EPD_DC_PIN , OUTPUT);
pinMode(EPD_SCK_PIN, OUTPUT);
pinMode(EPD_MOSI_PIN, OUTPUT);
pinMode(EPD_CS_PIN , OUTPUT);
digitalWrite(EPD_CS_PIN , HIGH);
digitalWrite(EPD_SCK_PIN, LOW);
}
void GPIO_Mode(UWORD GPIO_Pin, UWORD Mode)
{
if(Mode == 0) {
pinMode(GPIO_Pin , INPUT);
} else {
pinMode(GPIO_Pin , OUTPUT);
}
}
/******************************************************************************
function: Module Initialize, the BCM2835 library and initialize the pins, SPI protocol
parameter:
Info:
******************************************************************************/
UBYTE DEV_Module_Init(void)
{
//gpio
GPIO_Config();
//serial printf
Serial.begin(115200);
// hardware SPI (same pins as before, but much faster than bit-banging)
SPI.begin(EPD_SCK_PIN, -1, EPD_MOSI_PIN, EPD_CS_PIN);
SPI.setDataMode(SPI_MODE0);
SPI.setBitOrder(MSBFIRST);
SPI.setFrequency(EPD_SPI_HZ);
return 0;
}
/******************************************************************************
function:
SPI read and write
******************************************************************************/
void DEV_SPI_WriteByte(UBYTE data)
{
SPI.transfer(data);
}
UBYTE DEV_SPI_ReadByte()
{
return SPI.transfer(0x00);
}
void DEV_SPI_Write_nByte(UBYTE *pData, UDOUBLE len)
{
SPI.writeBytes(pData, len);
}
void DEV_Module_Exit(void)
{
#if D_9PIN
digitalWrite(EPD_PWR_PIN , LOW);
#endif
digitalWrite(EPD_RST_PIN , LOW);
}