Skip to content

Commit 30fad9f

Browse files
committed
fix platformio.ini.sample
update .gitignore
1 parent 2fdcf8c commit 30fad9f

8 files changed

+4899
-17
lines changed

.gitignore

+11-13
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,19 @@ platformio.ini
1515
platformio-device-monitor-*.log
1616

1717
# ESP-IDF SDK configuration file
18-
include/ssid.h
19-
/*.log
20-
**/.backup
21-
.travis.yml
22-
compile_commands.json
2318
.archive/*
2419
.reference/*
25-
bin/*
26-
data/BUILD_IEC/config.ini
20+
21+
**/*.log
22+
**/.backup
23+
2724
data/BUILD_IEC/.sys/rom/*
28-
dependencies.lock
29-
lib/device/disk.h
30-
examples/*
3125
data/BUILD_IEC/.sys/config.ini
3226

33-
sdkconfig.*.old
34-
sdkconfig.lolin-d32-pro
35-
sdkconfig.iec-nugget
27+
bin/*
28+
firmware/*
29+
examples/*
30+
31+
.travis.yml
32+
compile_commands.json
33+
dependencies.lock
File renamed without changes.

lib/fuji/fujiDisk.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#ifndef _FUJI_DISK_
22
#define _FUJI_DISK_
33

4-
#include "../device/drive.h"
4+
#include "../device/disk.h"
55

66
// #ifdef BUILD_APPLE
77
// #include "../device/iwm/disk.h"

platformio.ini.sample

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ data_dir = data/${meatloaf.build_platform}
5959
; https://github.com/platformio/platform-espressif32/releases
6060
platform = espressif32 @ 6.4.0
6161
framework = espidf
62+
board_build.filesystem = littlefs
6263
test_filter = embedded/*
6364
extra_scripts =
6465
pre:build_version.py
@@ -71,14 +72,13 @@ lib_ldf_mode = deep+
7172
upload_speed = 460800 ;921600
7273
;upload_port = COM1 ; Windows
7374
;upload_port = /dev/ttyUSB0 ; Linux
74-
upload_port = /dev/cu.usbserial-14433420 ; Mac
75+
;upload_port = /dev/cu.usbserial-14433420 ; Mac
7576
monitor_speed = 460800 ;921600
7677
;monitor_port = COM1 ; Windows
7778
;monitor_port = /dev/ttyUSB0 ; Linux
78-
monitor_port = /dev/cu.usbserial-14433420 ; Mac
79+
;monitor_port = /dev/cu.usbserial-14433420 ; Mac
7980
monitor_filters = esp32_exception_decoder
8081
check_skip_packages = yes
81-
board_build.filesystem = littlefs
8282
;debug_tool = esp-prog
8383
;debug_init_break = tbreak setup
8484

0 commit comments

Comments
 (0)