Jump to content

Fierodoug5

Members
  • Content Count

    433
  • Joined

  • Last visited

Posts posted by Fierodoug5


  1. 20 hours ago, mozzwald said:

     

    In addition to this, there have been reports of FujiNet not working with the Lotharek SIO Splitter/Hub which I suspect is a similar issue. @DrVenkman or @Mr Robot do you happen to have one of those?

    On my wroom unit, the splitter/hub works fine on my 800xl.(that's the way I have had it hooked up since I built fujinet) Fujinet will NOT boot with a 800 and splitter/hub, even if it is the only sio device plugged in.

    • Like 1

  2. ;FujiNet 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
    ; https://docs.platformio.org/page/projectconf.html

    [platformio]
    description = FujiNet Atari to ESP32 WiFi Multifunction Firmware
    ; Change this to target the device you use from the list of [env:xxx] sections below
    default_envs = fujinet-wroom

    [env]
    ; Common settings for all enivornments
    platform = espressif32
    framework = espidf
    extra_scripts = pre:build_version.py
    lib_ldf_mode = deep+
    upload_port = COM10 ; Windows
    ;upload_port = /dev/ttyUSB0 ; Linux
    upload_speed = 921600
    monitor_port = COM10 ; Windows
    ;monitor_port = /dev/ttyUSB0 ; Linux
    monitor_speed = 921600
    monitor_filters = time

    ; ESP32 WROVER (16MB Flash, 8MB PSRAM) based FujiNet
    [env:fujinet-v1]
    board = fujinet-v1
    build_type = debug
    build_flags =
        ;-D JTAG
        -D DEBUG_SPEED=921600
        -D BLUETOOTH_SUPPORT
        ;-D FN_HISPEED_INDEX=0
        ;-D VERBOSE_SIO
        ;-D VERBOSE_TNFS
        ;-D VERBOSE_DISK

    ; ESP32 WROOM (4MB Flash, NO PSRAM) based FujiNet
    [env:fujinet-wroom]
    board = fujinet-wroom
    build_type = debug
    build_flags =
        -D DEBUG_SPEED=921600
        ;-D FN_HISPEED_INDEX=0
        ;-D VERBOSE_SIO
        ;-D VERBOSE_TNFS
        ;-D VERBOSE_DISK

    ; ESP32 WROVER (4MB Flash, 8MB PSRAM) based FujiNet
    [env:fujinet-v1-4mb]
    board = fujinet-v1-4mb
    build_type = debug
    build_flags =
        -D DEBUG_SPEED=921600
        ;-D FN_HISPEED_INDEX=0
        ;-D VERBOSE_SIO
        ;-D VERBOSE_TNFS
        ;-D VERBOSE_DISK


  3. Need some help updating a older Esp32 Wroom board. I have not been able to update since last month when The github changed.

    I am following the new github wiki for PlatformIO bulid

    When I try to build, i get this error

     

    src\main.cpp:10:10:fatal error: fnsystem.h:no such file or directory

    #include"fnsystem.h" 

    compilation failed

    [.pio\build\fujinet-wroom\esp-idf\src\main.cpp.o] error 1

     

    Thanx

    Doug


  4. On 7/29/2020 at 9:57 AM, mozzwald said:

    I just updated the flash tool (https://fujinet.online/download/) so that you can view the serial debug output from FujiNet over USB. This is useful for those who do not want or need to install PlatformIO/vscode but still be able to report problems and supply debug output. 

    Is this flash tool only for the current wrover boards, and not for older wroom boards?

×
×
  • Create New...