]> Kevux Git Server - control/log
control
3 days agoUpdate: With latest FLL changes to fll_program. development
Kevin Day [Mon, 31 Mar 2025 02:09:20 +0000 (21:09 -0500)]
Update: With latest FLL changes to fll_program.

7 days agoUpdate: Copyright year to 2025.
Kevin Day [Thu, 27 Mar 2025 02:03:53 +0000 (21:03 -0500)]
Update: Copyright year to 2025.

I hadn't realized that I had not done this in January.
Now the copyright is correctly updated.

8 days agoUpdate: Support 'input' as file type error string.
Kevin Day [Wed, 26 Mar 2025 03:28:32 +0000 (22:28 -0500)]
Update: Support 'input' as file type error string.

12 days agoUpdate: Stand alone with 'unknown' type.
Kevin Day [Sat, 22 Mar 2025 03:26:00 +0000 (22:26 -0500)]
Update: Stand alone with 'unknown' type.

5 weeks agoUpdate: The fll_error dependencies.
Kevin Day [Fri, 21 Feb 2025 03:05:30 +0000 (21:05 -0600)]
Update: The fll_error dependencies.

This brings the code in line with the recent centralized string design.

7 weeks agoUpdate: With recent FLL changes, such as f_uid_t.
Kevin Day [Sun, 9 Feb 2025 06:37:45 +0000 (00:37 -0600)]
Update: With recent FLL changes, such as f_uid_t.

2 months agoUpdate: Improve signal handling code.
Kevin Day [Tue, 28 Jan 2025 04:45:34 +0000 (22:45 -0600)]
Update: Improve signal handling code.

Move the `fll_program_print_signal_received()` calls to the main program to help ensure consistent printing at the end of the program.
- Note: I am not certain if I want this instead in the main() function or not and I opted not to do so for now.

2 months agoUpdate: The threaded signal handler to avoid signal id races.
Kevin Day [Fri, 24 Jan 2025 03:00:00 +0000 (21:00 -0600)]
Update: The threaded signal handler to avoid signal id races.

Apply the same anti-race improvements implemented on the non-threaded signal checker to the threaded signal checker.

Still check for a negative id to prevent the signal message from being printed more than once.

2 months agoUpdate: Stand alone build with latest FLL changes.
Kevin Day [Fri, 24 Jan 2025 02:45:39 +0000 (20:45 -0600)]
Update: Stand alone build with latest FLL changes.

2 months agoUpdate: To the latest signal handling logic.
Kevin Day [Thu, 23 Jan 2025 07:04:37 +0000 (01:04 -0600)]
Update: To the latest signal handling logic.

2 months agoUpdate: Use the pre-defined typedef structure style for the main program type.
Kevin Day [Mon, 20 Jan 2025 23:53:50 +0000 (17:53 -0600)]
Update: Use the pre-defined typedef structure style for the main program type.

Make sure that the typedef is defined early for a later defined type.
This allows for circular use of the main, such as with callbacks.

This is being done across all of my programs.

2 months agoUpdate: Refresh the stand alone builds following the FLL 0.7.0 development release.
Kevin Day [Tue, 14 Jan 2025 00:37:56 +0000 (18:37 -0600)]
Update: Refresh the stand alone builds following the FLL 0.7.0 development release.

6 months agoUpdate: Add android build support.
Kevin Day [Fri, 6 Sep 2024 01:28:22 +0000 (20:28 -0500)]
Update: Add android build support.

7 months agoUpdate: To include the new FSS Read private file.
Kevin Day [Sun, 1 Sep 2024 02:15:17 +0000 (21:15 -0500)]
Update: To include the new FSS Read private file.

7 months agoUpdate: f_memory_increase_step_ define in stand alone.
Kevin Day [Mon, 5 Aug 2024 01:20:59 +0000 (20:20 -0500)]
Update: f_memory_increase_step_ define in stand alone.

8 months agoCleanup: The fakefile and settings files.
Kevin Day [Fri, 2 Aug 2024 02:47:04 +0000 (21:47 -0500)]
Cleanup: The fakefile and settings files.

8 months agoCleanup: Improve header file define wrappers.
Kevin Day [Fri, 2 Aug 2024 02:23:19 +0000 (21:23 -0500)]
Cleanup: Improve header file define wrappers.

The ifdef wrappers used for each header file is updated to be more accurate in regards to the directory and file path structure.

8 months agoCleanup: Build settings and fakefile mode related settings and documentation.
Kevin Day [Thu, 1 Aug 2024 03:44:59 +0000 (22:44 -0500)]
Cleanup: Build settings and fakefile mode related settings and documentation.

8 months agoCleanup: Alphabetize some of the settings.
Kevin Day [Thu, 1 Aug 2024 03:16:37 +0000 (22:16 -0500)]
Cleanup: Alphabetize some of the settings.

8 months agoRefactor: Change bit-wise enumerations into defines.
Kevin Day [Wed, 31 Jul 2024 02:45:29 +0000 (21:45 -0500)]
Refactor: Change bit-wise enumerations into defines.

I did some reviewing of how the enumerations used for flags are used.
These generally are not being used as a type.
An enumeration slightly increases the resulting binary size.
Enumeration values might be limited to just type of int.

This seems like an easy (small) optimization to just use defines rather than enumerations for flags and other bit-wise numbers.

8 months agoUpdate: Finish migrating the project.
Kevin Day [Tue, 30 Jul 2024 02:04:29 +0000 (21:04 -0500)]
Update: Finish migrating the project.

This wraps up the stand alone build settings.

This move the strings for the debug print functions into the functions themselves using an enumeration.

8 months agoProgress: Continue migrating the project.
Kevin Day [Mon, 29 Jul 2024 02:49:33 +0000 (21:49 -0500)]
Progress: Continue migrating the project.

This is already mostly done.
I have the stand alone config.h file to setup still.

I do have some strings that are being passed to print functions.
These should be moved into the print files but I am uncertain as to how I want to go about doing this.
I might create an enumeration like I do with the function print string macros.

8 months agoProgress: Continue migrating the project.
Kevin Day [Fri, 26 Jul 2024 04:12:25 +0000 (23:12 -0500)]
Progress: Continue migrating the project.

8 months agoUpdate: Initial import of the project, migrating from the FLL 0.7 level 3 project.
Kevin Day [Thu, 25 Jul 2024 03:49:29 +0000 (22:49 -0500)]
Update: Initial import of the project, migrating from the FLL 0.7 level 3 project.

I also copied several files from the controller project to help kick start setting this up.

I have not yet configured anything to compile or work.
There is still quite a lot of work to complete before the migration is complete.