PlatformIO folder structure
Moved and renamed files, not compiled yet
This commit is contained in:
parent
392bb997ef
commit
3d68f483ce
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
*.sublime-workspace
|
9
UVControl.sublime-project
Normal file
9
UVControl.sublime-project
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"folders":
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"path": ".",
|
||||||
|
"file_exclude_patterns": ["*.sublime-project"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
20
platformio.ini
Normal file
20
platformio.ini
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
; PlatformIO Project Configuration File
|
||||||
|
;
|
||||||
|
; Build options: build flags, source filter
|
||||||
|
; Upload options: custom upload port, speed and extra flags
|
||||||
|
; Library options: dependencies, extra library storages
|
||||||
|
; Advanced options: extra scripting
|
||||||
|
;
|
||||||
|
; Please visit documentation for the other options and examples
|
||||||
|
; http://docs.platformio.org/page/projectconf.html
|
||||||
|
|
||||||
|
[env:attiny85]
|
||||||
|
platform = atmelavr
|
||||||
|
board = atmega328p
|
||||||
|
framework = arduino
|
||||||
|
upload_protocol = stk500v1
|
||||||
|
upload_flags = -P$UPLOAD_PORT -b$UPLOAD_SPEED
|
||||||
|
board_f_cpu = 1000000L
|
||||||
|
|
||||||
|
upload_port = COM7
|
||||||
|
upload_speed = 19200
|
1
upload.ps1
Normal file
1
upload.ps1
Normal file
@ -0,0 +1 @@
|
|||||||
|
& platformio run --target upload
|
Loading…
Reference in New Issue
Block a user