Discussion about the ZBasic language including the System Library. If you're not sure where to post your message, do it here. However, do not make test posts here; that's the purpose of the Sandbox.
Probably something very simple, but this source code for this example does not compile. I get a whole set of errors which point to the .H file definitions not making into the ZBasic source compile e.g.
mikep wrote:I get a whole set of errors which point to the .H file definitions not making into the ZBasic source compile
There are three separate issues that are preventing the example code from compiling correctly. Firstly, when the installer was updated to use avr-gcc v4.7.2 the special XML generator (a key component in importing definitions) was omitted. The next installer posted will correct this but in the interim this issue can be remedied by downloading the .zip file below and extracting the .exe it contains to the the avr-gcc/bin subdirectory of the ZBasic installation directory.
Secondly, the example code uses certain identifiers (e.g. prog_char) that are no longer defined in avr-gcc v4.7.2. This has been addressed by updating the file FatFS_test.c to provide the missing definitions.
Thirdly, the import syntax was modified (after AN-222 was published) so that identifiers defined with #define aren't automatically imported. This has been addressed by updating the import directives in FatFS_mmc.bas.
The source code archive for AN-222 has been updated with the solutions for the second and third issues.
Thank you for the quick fix. It compiles but unfortunately my SD card is not recognized ("di" interactive command returns 1 instead of 0). I will have to investigate further myself.