Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: example-ublox-at-cellular-interface-ext example-ublox-cellular-driver-gen HelloMQTT ublox_new_driver_test ... more
Revision 6:804d544f8d8c, committed 2017-06-15
- Comitter:
- rob.meades@u-blox.com
- Date:
- Thu Jun 15 07:19:40 2017 +0100
- Parent:
- 5:b935404dcf7c
- Child:
- 7:a9eea2dbdd68
- Commit message:
- Make smaller test file size apply to C027 only.
Changed in this revision
| TESTS/unit_tests/file-system/main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/TESTS/unit_tests/file-system/main.cpp Thu Jun 15 01:14:18 2017 +0100 +++ b/TESTS/unit_tests/file-system/main.cpp Thu Jun 15 07:19:40 2017 +0100 @@ -44,7 +44,19 @@ // The size of file to use. #ifndef MBED_CONF_APP_FILE_SIZE -# define MBED_CONF_APP_FILE_SIZE 1500 +# ifdef TARGET_UBLOX_C027 +// C027 doesn't have so much RAM. +// TODO: it should be possible to use, say 1200 +// here but it seems that the Sara-G350 module +// needs flow control so that it can slow +// things down while flash writees complete +// and UARTSerial doesn't yet support HW +// flow control. Come back to this once +// UARTSerial has HW flow control. +# define MBED_CONF_APP_FILE_SIZE 1500 +# else +# define MBED_CONF_APP_FILE_SIZE 42000 +# endif #endif // The name of the file to use.