microSD Card control function for DISCO-F769NI based on BD_SD_DISCO_F746NG library by Roy Krikke

Dependencies:   BD_SD_DISCO_F769NI BSP_DISCO_F769NI

Fork of DISCO-F746NG_BLOCK_DEVICE_WITH_FAT_FILESYSTEM_ON_SDCARD by Roy Krikke

Please refer following my Notebook page.
/users/kenjiArai/notebook/sd-card-control-new/#

Committer:
kenjiArai
Date:
Sat May 02 03:43:51 2020 +0000
Revision:
7:e7767b779c8c
Parent:
4:0f7797c2d3fe
Child:
8:12621f1fcbbe
updated os5.changed starting process(wait key input)

Who changed what in which revision?

UserRevisionLine numberNew contents of line
kenjiArai 4:0f7797c2d3fe 1 /*
kenjiArai 4:0f7797c2d3fe 2 * mbed Application program for the mbed
kenjiArai 4:0f7797c2d3fe 3 * FatFs Check program /monitor part
kenjiArai 4:0f7797c2d3fe 4 *
kenjiArai 7:e7767b779c8c 5 * Copyright (c) 2015,'18,'19,'20 Kenji Arai / JH1PJL
kenjiArai 7:e7767b779c8c 6 * http://www7b.biglobe.ne.jp/~kenjia/
kenjiArai 4:0f7797c2d3fe 7 * https://os.mbed.com/users/kenjiArai/
kenjiArai 4:0f7797c2d3fe 8 * Created: May 5th, 2015
kenjiArai 4:0f7797c2d3fe 9 * Revised: June 14th, 2015
kenjiArai 7:e7767b779c8c 10 * Revised: May 2nd, 2020
kenjiArai 4:0f7797c2d3fe 11 */
kenjiArai 4:0f7797c2d3fe 12
kenjiArai 4:0f7797c2d3fe 13 // Function prototypes --------------------------------------------------------
kenjiArai 4:0f7797c2d3fe 14 void mon(void);
kenjiArai 4:0f7797c2d3fe 15 uint32_t get_disk_freespace(void);
kenjiArai 7:e7767b779c8c 16 uint32_t get_data_file_size(const char *const file_name);