Download FreeRTOS
 

Quality RTOS & Embedded Software

LIBRARIES
WHAT'S NEW
Simplifying Authenticated Cloud Connectivity for Any Device.
Designing an energy efficient and cloud-connected IoT solution with CoAP.
Introducing FreeRTOS Kernel version 11.0.0:
FreeRTOS Roadmap and Code Contribution process.
OPC-UA over TSN with FreeRTOS.

f_initvolume()

[FreeRTOS Embedded File System API]

header_file.h
unsigned char f_initvolume( F_DRIVERINIT pxInitFunction );
		
Initialises the embedded FAT file system volume. f_initvolume() must be called before any file system operations can be performed.

f_initvolume() works independently of the status of the hardware, it does not matter if a card is inserted or not.

Parameters:

pxInitFunction   A pointer to the function used to initialise the drive.

Returns:

F_NO_ERROR   The drive was initialised successfully.

Any other value   The drive was not initialised successfully - the return value holds the error code.

See also:

f_format(), f_delvolume().

Example usage:


void vInitFAT( void )
{
unsigned char ucReturn;

/* Initialise the drive */
ucReturn = f_initvolume();
if( ucReturn != F_NO_ERROR )
{
/* Volume was not initialised, ucReturn holds the error code. */
}
else
{
/* Volume was initialised. */
}
}

Example use of the f_initvolume() API function
Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.