N64FlashcartMenu
Loading...
Searching...
No Matches
flashcart_utils.c File Reference

Flashcart utility functions implementation. More...

Functions

void pi_dma_read_data (void *src, void *dst, size_t length)
 Perform a DMA read operation from the PI (Peripheral Interface).
 
void pi_dma_write_data (void *src, void *dst, size_t length)
 Perform a DMA write operation to the PI (Peripheral Interface).
 
void fatfs_fix_file_size (FIL *fil)
 Align the file size to the SD sector size to prevent partial sector load.
 
bool fatfs_get_file_sectors (char *path, uint32_t *address, address_type_t type, uint32_t max_sectors)
 Get the file sectors in the FAT filesystem.
 

Detailed Description

Flashcart utility functions implementation.

Function Documentation

◆ pi_dma_read_data()

void pi_dma_read_data ( void * src,
void * dst,
size_t length )

Perform a DMA read operation from the PI (Peripheral Interface).

Parameters
srcSource address.
dstDestination address.
lengthLength of data to read.

◆ pi_dma_write_data()

void pi_dma_write_data ( void * src,
void * dst,
size_t length )

Perform a DMA write operation to the PI (Peripheral Interface).

Parameters
srcSource address.
dstDestination address.
lengthLength of data to write.

◆ fatfs_fix_file_size()

void fatfs_fix_file_size ( FIL * fil)

Align the file size to the SD sector size to prevent partial sector load.

Fix the file size in the FAT filesystem.

Parameters
filPointer to the file object.

◆ fatfs_get_file_sectors()

bool fatfs_get_file_sectors ( char * path,
uint32_t * address,
address_type_t type,
uint32_t max_sectors )

Get the file sectors in the FAT filesystem.

Parameters
pathPath to the file.
addressPointer to store the address of the file sectors.
typeThe type of address (memory or PI).
max_sectorsMaximum number of sectors.
Returns
true if an error occurred, false otherwise.