mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-26 18:09:04 +00:00
windows build wip
This commit is contained in:
parent
449a3959b0
commit
26bb4ffe79
7
docs/software/windows-build-instructions.md
Normal file
7
docs/software/windows-build-instructions.md
Normal file
@ -0,0 +1,7 @@
|
||||
|
||||
|
||||
* install python
|
||||
* install git (including git-bash)
|
||||
* install platformio
|
||||
* install vscode
|
||||
* install https://sourceforge.net/projects/mingw-w64/ (for windows gcc/g++) - you'll need to add the bin directory to your PATH
|
@ -4,6 +4,9 @@
|
||||
#include <assert.h>
|
||||
#include <sys/time.h>
|
||||
#include <time.h>
|
||||
#include <cstring>
|
||||
|
||||
using namespace std;
|
||||
|
||||
/**
|
||||
* A printer that doesn't go anywhere
|
||||
|
@ -1,5 +1,6 @@
|
||||
#pragma once
|
||||
|
||||
#include <string.h>
|
||||
#include <cstring>
|
||||
|
||||
#include <OLEDDisplayUi.h>
|
||||
@ -26,6 +27,8 @@
|
||||
#define BRIGHTNESS_DEFAULT 150
|
||||
#endif
|
||||
|
||||
using namespace std;
|
||||
|
||||
namespace graphics
|
||||
{
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user