-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
4,974 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"build": { | ||
"arduino": { | ||
"ldscript": "esp32s3_out.ld" | ||
}, | ||
"core": "esp32", | ||
"extra_flags": [ | ||
"-DBOARD_HAS_PSRAM", | ||
"-DARDUINO_USB_MODE=1", | ||
"-DARDUINO_USB_CDC_ON_BOOT=1" | ||
], | ||
"f_cpu": "240000000L", | ||
"f_flash": "80000000L", | ||
"flash_mode": "qio", | ||
"mcu": "esp32s3", | ||
"variant": "esp32s3", | ||
"partitions": "fujinet_partitions_8MB.csv" | ||
}, | ||
"connectivity": [ | ||
"wifi" | ||
], | ||
"debug": { | ||
"openocd_target": "esp32s3.cfg" | ||
}, | ||
"frameworks": [ | ||
"arduino", | ||
"espidf" | ||
], | ||
"name": "ESP32-S3-WROOM-1 N8R8", | ||
"upload": { | ||
"flash_size": "8MB", | ||
"maximum_ram_size": 327680, | ||
"maximum_size": 8388608, | ||
"use_1200bps_touch": true, | ||
"wait_for_upload_port": true, | ||
"require_upload_port": true, | ||
"speed": 460800 | ||
}, | ||
"url": "https://github.com/FujiNetWIFI/fujinet-firmware", | ||
"vendor": "FujiNet Project" | ||
} |
18 changes: 18 additions & 0 deletions
18
build-platforms/platformio-fujinet-coco-esp32-s3-wroom-1-n16r8.ini
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[fujinet] | ||
build_platform = BUILD_COCO | ||
build_bus = DRIVEWIRE | ||
build_board = fujinet-coco-esp32-s3-wroom-1-n16r8 | ||
|
||
[env] | ||
upload_port = /dev/ttyACM0 | ||
monitor_port = /dev/ttyACM0 | ||
monitor_speed = 115200 | ||
|
||
[env:fujinet-coco-esp32-s3-wroom-1-n16r8] | ||
platform = espressif32@${fujinet.esp32_platform_version} | ||
platform_packages = ${fujinet.esp32_platform_packages} | ||
board = esp32-s3-wroom-1-n16r8 | ||
build_type = debug | ||
build_flags = | ||
${env.build_flags} | ||
-D PINMAP_COCO_ESP32S3 |
18 changes: 18 additions & 0 deletions
18
build-platforms/platformio-fujinet-coco-esp32-s3-wroom-1-n8r8.ini
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[fujinet] | ||
build_platform = BUILD_COCO | ||
build_bus = DRIVEWIRE | ||
build_board = fujinet-coco-esp32-s3-wroom-1-n8r8 | ||
|
||
[env] | ||
upload_port = /dev/ttyACM0 | ||
monitor_port = /dev/ttyACM0 | ||
monitor_speed = 115200 | ||
|
||
[env:fujinet-coco-esp32-s3-wroom-1-n8r8] | ||
platform = espressif32@${fujinet.esp32_platform_version} | ||
platform_packages = ${fujinet.esp32_platform_packages} | ||
board = esp32-s3-wroom-1-n8r8 | ||
build_type = debug | ||
build_flags = | ||
${env.build_flags} | ||
-D PINMAP_COCO_ESP32S3 |
23 changes: 23 additions & 0 deletions
23
data/webui/config/fujinet-coco-esp32-s3-wroom-1-n16r8.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
paths: | ||
# fonts in the root dir because of file name length issues | ||
font_path: /file? | ||
css_path: /file?css | ||
js_path: /file?js | ||
components: | ||
network: true | ||
hardware: true | ||
hosts_list: true | ||
mount_list: true | ||
printer_settings: true | ||
modem_settings: true | ||
hsio_settings: true | ||
timezone: true | ||
udp_stream: true | ||
program_recorder: true | ||
disk_swap: true | ||
boot_settings: true | ||
apetime: true | ||
cpm_settings: true | ||
pclink: true | ||
tweaks: | ||
# webui tweaks, if any |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
paths: | ||
# fonts in the root dir because of file name length issues | ||
font_path: /file? | ||
css_path: /file?css | ||
js_path: /file?js | ||
components: | ||
network: true | ||
hardware: true | ||
hosts_list: true | ||
mount_list: true | ||
printer_settings: true | ||
modem_settings: true | ||
hsio_settings: true | ||
timezone: true | ||
udp_stream: true | ||
program_recorder: true | ||
disk_swap: true | ||
boot_settings: true | ||
apetime: true | ||
cpm_settings: true | ||
pclink: true | ||
tweaks: | ||
# webui tweaks, if any |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#ifdef PINMAP_COCO_ESP32S3 | ||
|
||
/* SD Card */ | ||
#define PIN_CARD_DETECT GPIO_NUM_14 // fnSystem.h | ||
#define PIN_CARD_DETECT_FIX GPIO_NUM_9 // fnSystem.h | ||
|
||
#define PIN_SD_HOST_CS GPIO_NUM_10 // fnFsSD.cpp | ||
#define PIN_SD_HOST_MISO GPIO_NUM_13 | ||
#define PIN_SD_HOST_MOSI GPIO_NUM_11 | ||
#define PIN_SD_HOST_SCK GPIO_NUM_12 | ||
|
||
/* UART */ | ||
#define PIN_UART0_RX GPIO_NUM_44 // fnUART.cpp | ||
#define PIN_UART0_TX GPIO_NUM_43 | ||
#define PIN_UART1_RX GPIO_NUM_NC | ||
#define PIN_UART1_TX GPIO_NUM_NC | ||
#define PIN_UART2_RX GPIO_NUM_18 | ||
#define PIN_UART2_TX GPIO_NUM_17 | ||
|
||
/* Buttons */ | ||
#define PIN_BUTTON_A GPIO_NUM_0 | ||
#define PIN_BUTTON_B GPIO_NUM_NC | ||
#define PIN_BUTTON_C GPIO_NUM_NC | ||
|
||
/* LEDs */ | ||
#define PIN_LED_WIFI GPIO_NUM_NC // led.cpp | ||
#define PIN_LED_BUS GPIO_NUM_NC | ||
#define PIN_LED_BT GPIO_NUM_NC | ||
|
||
/* Coco */ | ||
#define PIN_CASS_MOTOR GPIO_NUM_NC // Second motor pin is tied to +3V | ||
#define PIN_CASS_DATA_IN GPIO_NUM_NC | ||
#define PIN_CASS_DATA_OUT GPIO_NUM_NC | ||
#define PIN_CD GPIO_NUM_NC // same as atari PROC | ||
#define PIN_EPROM_A14 GPIO_NUM_NC // Used to set the serial baud rate | ||
#define PIN_EPROM_A15 GPIO_NUM_NC // based on the HDB-DOS image selected | ||
|
||
/* Audio Output */ | ||
#define PIN_DAC1 GPIO_NUM_NC | ||
|
||
#endif /* PINMAP_COCO_ESP32S3 */ | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.