oled initialization with ssd1306

oled-main with structure
ssd1306 initialization
This commit is contained in:
2022-06-17 23:04:16 +02:00
parent ebccd5c430
commit 2663ee6e2a
13 changed files with 283 additions and 2 deletions

25
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,25 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/utility/unity/core",
"${workspaceFolder}/utility/unity/fixture",
"${workspaceFolder}/test/oled/helpers/inc",
"${workspaceFolder}/test/oled/",
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE",
"TEST"
],
"compilerPath": "C:\\Apps\\mingw64\\bin\\gcc.exe",
"cStandard": "gnu17",
"cppStandard": "gnu++17",
"intelliSenseMode": "windows-gcc-x64"
}
],
"version": 4
}