Add waveshare eink display library
This commit is contained in:
parent
e34d6b88df
commit
ca3fb7854e
6
.gitmodules
vendored
6
.gitmodules
vendored
@ -1,3 +1,6 @@
|
|||||||
|
[submodule "eink/eink"]
|
||||||
|
path = eink/eink
|
||||||
|
url = git@git.blackmark.me:avr/eink.git
|
||||||
[submodule "eink/uart"]
|
[submodule "eink/uart"]
|
||||||
path = eink/uart
|
path = eink/uart
|
||||||
url = git@git.blackmark.me:avr/uart.git
|
url = git@git.blackmark.me:avr/uart.git
|
||||||
@ -10,3 +13,6 @@
|
|||||||
[submodule "eink/flash"]
|
[submodule "eink/flash"]
|
||||||
path = eink/flash
|
path = eink/flash
|
||||||
url = git@git.blackmark.me:avr/flash.git
|
url = git@git.blackmark.me:avr/flash.git
|
||||||
|
[submodule "eink/spi"]
|
||||||
|
path = eink/spi
|
||||||
|
url = git@git.blackmark.me:avr/spi.git
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#define F_CPU 8'000'000
|
#define F_CPU 16'000'000
|
||||||
#include <util/delay.h>
|
#include <util/delay.h>
|
||||||
|
1
eink/eink
Submodule
1
eink/eink
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 08dd1073af43b65b358257b968852aae8fc77946
|
@ -83,6 +83,17 @@
|
|||||||
</custom>
|
</custom>
|
||||||
<AAFDebugger>
|
<AAFDebugger>
|
||||||
<AAFDebugFiles>
|
<AAFDebugFiles>
|
||||||
|
<DebugFile>
|
||||||
|
<path>\Debug\eink.lss</path>
|
||||||
|
<AAFSetting>
|
||||||
|
<Label>Lss Files</Label>
|
||||||
|
<Extention>.lss</Extention>
|
||||||
|
<Regex>^\s*(?<address>[a-f0-9]*):\s*.*$</Regex>
|
||||||
|
<DebugEnabled>true</DebugEnabled>
|
||||||
|
<RegexGroups>address</RegexGroups>
|
||||||
|
<DebuggerExpression>$pc</DebuggerExpression>
|
||||||
|
</AAFSetting>
|
||||||
|
</DebugFile>
|
||||||
</AAFDebugFiles>
|
</AAFDebugFiles>
|
||||||
</AAFDebugger>
|
</AAFDebugger>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
@ -200,13 +211,22 @@
|
|||||||
</ListValues>
|
</ListValues>
|
||||||
</avrgcccpp.assembler.general.IncludePaths>
|
</avrgcccpp.assembler.general.IncludePaths>
|
||||||
<avrgcccpp.assembler.debugging.DebugLevel>Default (-Wa,-g)</avrgcccpp.assembler.debugging.DebugLevel>
|
<avrgcccpp.assembler.debugging.DebugLevel>Default (-Wa,-g)</avrgcccpp.assembler.debugging.DebugLevel>
|
||||||
</AvrGccCpp>
|
</AvrGccCpp>
|
||||||
</ToolchainSettings>
|
</ToolchainSettings>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="clock.hpp">
|
<Compile Include="clock.hpp">
|
||||||
<SubType>compile</SubType>
|
<SubType>compile</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="eink\epd1in54b_V2.h">
|
||||||
|
<SubType>compile</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="eink\imagedata.cpp">
|
||||||
|
<SubType>compile</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="eink\imagedata.h">
|
||||||
|
<SubType>compile</SubType>
|
||||||
|
</Compile>
|
||||||
<Compile Include="flash\flash.hpp">
|
<Compile Include="flash\flash.hpp">
|
||||||
<SubType>compile</SubType>
|
<SubType>compile</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
@ -216,6 +236,15 @@
|
|||||||
<Compile Include="main.cpp">
|
<Compile Include="main.cpp">
|
||||||
<SubType>compile</SubType>
|
<SubType>compile</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="spi\config.hpp">
|
||||||
|
<SubType>compile</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="spi\hardware.hpp">
|
||||||
|
<SubType>compile</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="spi\spi.hpp">
|
||||||
|
<SubType>compile</SubType>
|
||||||
|
</Compile>
|
||||||
<Compile Include="uart\config.hpp">
|
<Compile Include="uart\config.hpp">
|
||||||
<SubType>compile</SubType>
|
<SubType>compile</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
@ -253,6 +282,8 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="flash" />
|
<Folder Include="flash" />
|
||||||
<Folder Include="io" />
|
<Folder Include="io" />
|
||||||
|
<Folder Include="eink" />
|
||||||
|
<Folder Include="spi" />
|
||||||
<Folder Include="util" />
|
<Folder Include="util" />
|
||||||
<Folder Include="uart" />
|
<Folder Include="uart" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
@ -2,20 +2,48 @@
|
|||||||
|
|
||||||
#include "flash/flash.hpp"
|
#include "flash/flash.hpp"
|
||||||
#include "io/io.hpp"
|
#include "io/io.hpp"
|
||||||
|
#include "spi/spi.hpp"
|
||||||
#include "uart/uart.hpp"
|
#include "uart/uart.hpp"
|
||||||
|
|
||||||
|
#include "eink/epd1in54b_V2.h"
|
||||||
|
#include "eink/imagedata.h"
|
||||||
|
|
||||||
using uart_t = uart::Uart0<>;
|
using uart_t = uart::Uart0<>;
|
||||||
REGISTER_UART0_INT_VECTORS(uart_t);
|
REGISTER_UART0_INT_VECTORS(uart_t);
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
|
using spi_t = spi::Hardware<spi::Config<>>;
|
||||||
|
|
||||||
uart_t serial;
|
uart_t serial;
|
||||||
serial.init();
|
serial.init();
|
||||||
|
|
||||||
sei();
|
sei();
|
||||||
|
|
||||||
|
serial << F("e-Paper demo") << F("\r\n");
|
||||||
|
|
||||||
|
Epd<spi_t> epd;
|
||||||
|
if (epd.Init() != 0) {
|
||||||
|
serial << F("e-Paper init failed") << F("\r\n");
|
||||||
|
serial.flushTx();
|
||||||
|
_delay_ms(1000);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
serial << F("e-Paper init") << F("\r\n");
|
||||||
|
|
||||||
|
serial << F("e-Paper clear") << F("\r\n");
|
||||||
|
epd.DisplayClear();
|
||||||
|
|
||||||
|
serial << F("e-Paper draw") << F("\r\n");
|
||||||
|
epd.DisplayFrame(IMAGE_BLACK, IMAGE_RED);
|
||||||
|
|
||||||
|
serial << F("e-Paper sleep") << F("\r\n");
|
||||||
|
epd.Sleep();
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
serial << F("Hello World!") << F("\r\n");
|
serial << F("e-Paper running") << F("\r\n");
|
||||||
_delay_ms(1000);
|
_delay_ms(1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
1
eink/spi
Submodule
1
eink/spi
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 70aabc07f64a33b04e3e9ee00627f5c120b1f9ef
|
Loading…
Reference in New Issue
Block a user