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
+10 -10
View File
@@ -1,11 +1,11 @@
/***************************************************************************
* Copyright (c) 2024 Microsoft Corporation
* Copyright (c) 2025 Eclipse ThreadX contributors
*
* Copyright (c) 2025 Eclipse ThreadX contributors
*
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
*
*
* SPDX-License-Identifier: MIT
**************************************************************************/
@@ -64,11 +64,11 @@ ULONG thread_0_counter;
void main(void)
{
#ifdef FX_STANDALONE_ENABLE
#ifdef FX_STANDALONE_ENABLE
/* Initialize FileX. */
fx_system_initialize();
thread_0_entry(0);
#else
/* Enter the ThreadX kernel. */
@@ -116,10 +116,10 @@ CHAR local_buffer[30];
/* Format the RAM disk - the memory for the RAM disk was setup in
tx_application_define above.
tx_application_define above.
Important Note: The user must ensure there is enough RAM for the format
specified. Otherwise, memory corruption can occur.
specified. Otherwise, memory corruption can occur.
*/
status = fx_media_format(&ram_disk,
_fx_ram_driver, // Driver entry
@@ -141,7 +141,7 @@ CHAR local_buffer[30];
{
/* Error formatting the RAM disk. */
printf("HTTPS RAM disk format failed, error: %x\n", status);
return;
return;
}
/* Loop to repeat the demo over and over! */
@@ -155,9 +155,9 @@ CHAR local_buffer[30];
{
/* Error opening the RAM disk. */
printf("RAM disk open failed, error: %x\n", status);
return;
return;
}
#ifdef FX_ENABLE_FAULT_TOLERANT
status = fx_fault_tolerant_enable(&ram_disk, fault_tolerant_memory, sizeof(fault_tolerant_memory));