Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MiniDexed/commit/3a068d18cf83fdec2545e151f88af3b0f83bf8e1?style=split&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

Updated to keep in step with updates from the original in circle-stdlib.

pull/422/head
diyelectromusic 3 years ago
parent 97f48f9dc6
commit 3a068d18cf
  1. 6
      src/circle_stdlib_app.h

@ -214,8 +214,10 @@ public:
return false; return false;
} }
// Initialize newlib stdio with a reference to Circle's file system and console // Initialize newlib stdio with a reference to Circle's console
CGlueStdioInit (mFileSystem, mConsole); // (Remove mFileSystem as a parameter to mirror change in circle-stdlib's
// commit "Remove obsolete FATFS-related code", dated Dec 2022)
CGlueStdioInit (mConsole);
mLogger.Write (GetKernelName (), LogNotice, "Compile time: " __DATE__ " " __TIME__); mLogger.Write (GetKernelName (), LogNotice, "Compile time: " __DATE__ " " __TIME__);

Loading…
Cancel
Save