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.
Dependencies: mbed SDFileSystem
Revision 2:aed6b2f07ad8, committed 2019-08-15
- Comitter:
- fisque
- Date:
- Thu Aug 15 18:12:23 2019 +0000
- Parent:
- 1:e4d7342be507
- Commit message:
- abobrinha;
Changed in this revision
SDFileSystem.lib | Show annotated file Show diff for this revision Revisions of this file |
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/SDFileSystem.lib Tue May 16 05:18:55 2017 +0000 +++ b/SDFileSystem.lib Thu Aug 15 18:12:23 2019 +0000 @@ -1,1 +1,1 @@ -http://mbed.org/users/mbed_official/code/SDFileSystem/#8db0d3b02cec +https://os.mbed.com/users/fisque/code/SDFileSystem/#cb74f132e9d0
--- a/main.cpp Tue May 16 05:18:55 2017 +0000 +++ b/main.cpp Thu Aug 15 18:12:23 2019 +0000 @@ -1,19 +1,45 @@ +/* Copyright (c) 2010-2011 mbed.org, MIT License +* +* Permission is hereby granted, free of charge, to any person obtaining a copy of this software +* and associated documentation files (the "Software"), to deal in the Software without +* restriction, including without limitation the rights to use, copy, modify, merge, publish, +* distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the +* Software is furnished to do so, subject to the following conditions: +* +* The above copyright notice and this permission notice shall be included in all copies or +* substantial portions of the Software. +* +* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING +* BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +*/ + #include "mbed.h" #include "SDFileSystem.h" -SDFileSystem sd(p5, p6, p7, p8, "sd"); // the pinout on the mbed Cool Components workshop board +Serial pc(USBTX, USBRX); +SDFileSystem sd(D11, D12, D13, D10, "FR"); // MOSI, MISO, SCK, CS +FILE *fp; int main() { - printf("Hello World!\n"); - - mkdir("/sd/mydir", 0777); + wait(2); + pc.printf("Initializing\r\n"); + + fp = fopen("/FR/hello.txt", "r"); + if (fp != NULL) { + fclose(fp); + remove("/FR/hello.txt"); + pc.printf("Remove an existing file with the same name\r\n"); + } - FILE *fp = fopen("/sd/mydir/sdtest.txt", "w"); - if(fp == NULL) { - error("Could not open file for write\n"); + fp = fopen("/FR/hello.txt", "w"); + if (fp == NULL) { + pc.printf("Unable to write the file\r\n"); + } else { + fprintf(fp, "FUNCIONOU!!!!"); + fclose(fp); + pc.printf("File successfully written!\r\n"); } - fprintf(fp, "Hello fun SD Card World!"); - fclose(fp); - - printf("Goodbye World!\n"); -} +} \ No newline at end of file