Updated copyright headers and removed revision history

* Updated version number constants

* Updated copyright headers and removed revision history
This commit is contained in:
Frédéric Desbiens
2026-03-05 08:39:33 +01:00
committed by GitHub
parent dfe5084ab8
commit 61b0b06c3e
372 changed files with 14882 additions and 16676 deletions
@@ -48,13 +48,13 @@ void filex_unicode_name_string_application_define(void *first_unused_memory)
#ifndef FX_STANDALONE_ENABLE
UCHAR *pointer;
/* Setup the working pointer. */
pointer = (UCHAR *) first_unused_memory;
/* Create the main thread. */
tx_thread_create(&ftest_0, "thread 0", ftest_0_entry, 0,
pointer, DEMO_STACK_SIZE,
tx_thread_create(&ftest_0, "thread 0", ftest_0_entry, 0,
pointer, DEMO_STACK_SIZE,
4, 4, TX_NO_TIME_SLICE, TX_AUTO_START);
pointer = pointer + DEMO_STACK_SIZE;
@@ -98,20 +98,20 @@ FX_LOCAL_PATH local_path;
printf("FileX Test: Unicode name string test...............................");
/* Format the media. This needs to be done before opening it! */
status = fx_media_format(&ram_disk,
status = fx_media_format(&ram_disk,
_fx_ram_driver, // Driver entry
ram_disk_memory, // RAM disk memory pointer
cache_buffer, // Media buffer pointer
CACHE_SIZE, // Media buffer size
CACHE_SIZE, // Media buffer size
"MY_RAM_DISK", // Volume Name
1, // Number of FATs
32, // Directory Entries
0, // Hidden sectors
512, // Total sectors
128, // Sector size
512, // Total sectors
128, // Sector size
1, // Sectors per cluster
1, // Heads
1); // Sectors per track
1); // Sectors per track
/* Open the ram_disk. */
status += fx_media_open(&ram_disk, "RAM DISK", _fx_ram_driver, ram_disk_memory, cache_buffer, CACHE_SIZE);
@@ -122,7 +122,7 @@ FX_LOCAL_PATH local_path;
/* Disable write protect */
ram_disk.fx_media_driver_write_protect = FX_FALSE;
/* lengthen the unicode name to include the last 0 */
/* lengthen the unicode name to include the last 0 */
ULONG length = 15;
/* Test creating directory. */
@@ -159,7 +159,7 @@ FX_LOCAL_PATH local_path;
/* Specify last found name as the directory we just created. */
buffer[255] = '/';
buffer[256] = 0;
for (UINT i = 0; i <= 256; i++)
ram_disk.fx_media_last_found_name[i] = (CHAR)buffer[i];