We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to compile the code in https://github.com/MatzElectronics/CH559sdccUSBHost If I compile with platformio I it just doesn't behave properly, my usb device just kinda hangs.
If I modify builder/main.py:88 LINKFLAGS to include "--xram-loc", "1536" the flashed code works as expected.
"--xram-loc", "1536"
--- 87,94 ---- CPPDEFINES=["F_CPU=$BOARD_F_CPU", "HEAP_SIZE=" + __getSize("size_heap", env)], LINKFLAGS=[ "-m%s" % board_config.get("build.cpu"), + "--xram-loc", + "1536", "--iram-size", __getSize("size_iram", env), "--xram-size",
I really have no idea why this might be, but I feel like exposing xram-loc the way we expose xram-size is not the correct solution.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to compile the code in https://github.com/MatzElectronics/CH559sdccUSBHost
If I compile with platformio I it just doesn't behave properly, my usb device just kinda hangs.
If I modify builder/main.py:88 LINKFLAGS to include
"--xram-loc", "1536"
the flashed code works as expected.I really have no idea why this might be, but I feel like exposing xram-loc the way we expose xram-size is not the correct solution.
The text was updated successfully, but these errors were encountered: