| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Original HTTPS Page] |
Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.
You must be logged in to block users.
Contact GitHub support about this userβs behavior. Learn more about reporting abuse.
Report abuseI build industrial software, embedded firmware tools, and small deterministic engines for systems that have to keep working when conditions are not ideal.
LOX means Liquid Oxygen β the technical brand I use for my embedded and systems projects.
For me, LOX stands for concentrated engineering: compact code, high pressure, clear contracts, predictable behavior, and systems that can be tested instead of guessed.
My work is focused on practical C99, C#, and C++ tooling for:
The common thread is simple:
Build tools that are small enough to understand, strict enough to trust, and useful outside of demos.
My usual design bias:
LOX is my family of embedded and systems-software projects.
The LOX projects are focused C99 libraries and tools for constrained firmware, diagnostics, reliability, recovery, storage, boot flows, permissions, sequencing, and resource control.
They are not meant to be large frameworks. They are small technical building blocks that can be inspected, tested, ported, and integrated into real firmware.
Core LOX principles:
I am looking for people who can test, break, review, and validate embedded C projects on real hardware.
Useful feedback areas:
If you work with firmware, MCU platforms, RTOS/bare-metal systems, industrial devices, or constrained edge systems, I am interested in practical feedback β especially reports that include hardware, configuration, failure cases, logs, and test evidence.
loxdb is a compact C99 embedded database for firmware, dataloggers, controllers, and small edge runtimes.
It is built for cases where a full SQL database is too heavy, but raw files, ad-hoc structs, or fragile flash layouts are not enough.
loxdb combines three storage models behind one API surface:
Core design:
loxdb is not a tiny SQLite clone.
SQLite is excellent, but it targets a different operating point. loxdb is intentionally narrower: deterministic storage for constrained firmware where predictable memory, small API surface, and recoverable writes matter more than SQL flexibility.
License: MIT open-source core
Commercial extension: loxdb_pro_docs contains public API-level documentation for the planned/commercial PRO module set.
loxdb_pro_docs documents the public integration-facing API for the commercial loxdb_pro layer.
The PRO layer is intended for embedded products that need more than local storage. It adds production-facing modules around the core database: validation, integrity checks, policy gates, observability, migration, transport, recovery planning, and host tooling.
Planned/module areas include:
The public repository intentionally contains documentation only. The implementation and proprietary validation procedures are not published there.
loxdust is a portable C99 library for verified persistent object storage.
It is designed for firmware that must preserve small structured objects across resets, corruption, and interrupted writes while keeping storage layout and recovery behavior explicit.
Core design:
loxdust is not a general-purpose database or file system.
Its value is narrower: provide a small, auditable persistence layer that can verify stored objects, expose damage, and perform controlled recovery.
License: MIT.
loxbudget is a small, heap-free C99 library that decides whether an embedded operation should run β and at what level β based on configurable resource budgets, rate windows, and optional calibration.
It works as a deterministic pre-flight gate in front of risky firmware work:
Core design:
Typical use cases:
loxbudget is not a scheduler, allocator, watchdog, logger, profiler, or RTOS replacement.
Its value is narrower: an admission-control layer that gives firmware a deterministic answer to:
May this operation run right now, and how?
License: MIT.
loxboot is a compact C99 bootloader core for bare-metal MCUs and embedded firmware that need predictable boot, update, and recovery behavior.
It is built around a portable core with target-specific behavior isolated behind adapter boundaries.
Core scope:
loxboot is intentionally not presented as a production-ready universal bootloader.
Its value is narrower: provide a small, auditable bootloader core that can be adapted, tested, and hardened for specific MCU targets.
Current practical direction includes STM32-style Cortex-M targets and ESP32-S3, while the core is kept MCU-agnostic.
Known open areas include:
License: MIT.
loxguard is a lightweight C99 guard-runtime for embedded C.
It introduces Guard Blocks and Checked Guard Blocks: explicit execution boundaries around risky firmware paths such as parsers, protocol handlers, optional modules, recovery-sensitive routines, and code that should never fail silently.
Instead of only failing with an assert or watchdog reset, loxguard turns unsafe execution states into structured runtime evidence:
Current scope includes:
loxguard does not claim full memory safety for arbitrary C code and is not a safety-certified framework.
Its value is narrower and practical: make risky execution paths easier to detect, record, inspect, and react to in small embedded C systems.
License: MIT.
loxalarm is a small, heap-free C99 alarm state-machine core for embedded firmware.
It models the lifecycle of one process alarm condition with behavior that is often scattered across application code, HMI logic, PLC glue, or vendor-specific runtime layers.
It includes:
loxalarm is designed for firmware that needs PLC-style alarm semantics without depending on:
loxalarm is not a safety-certified alarm system, historian, HMI, or OPC UA/MQTT/Modbus binding.
Its value is narrower: a deterministic runtime alarm object that higher-level firmware, diagnostics, logging, persistence, or UI layers can consume.
License: MIT.
loxseq is a small, heap-free C99 step sequencer for firmware workflows that must survive reset, brownout, watchdog recovery, or power loss.
It checkpoints step progress to caller-provided storage and computes a recovery verdict on reboot, so firmware does not have to blindly restart a physical process from the beginning.
Core ideas:
Typical use cases include:
loxseq is not an RTOS scheduler, workflow language, database, or general task engine.
Its value is narrower: deterministic step execution with explicit reboot recovery semantics.
License: MIT.
loxperm is a small, heap-free C99 single-header library for evaluating permissives and interlocks.
It gives firmware a deterministic answer to a simple but important question:
Is this action allowed to start, and is it still allowed to continue?
Core features:
Typical use cases include:
loxperm is not a safety-certified interlock system or PLC replacement.
Its value is narrower: deterministic, explainable permission logic for embedded C firmware.
License: MIT.
loxsort is an experimental C99 sorting library for embedded and resource-constrained systems.
It selects an algorithm using explicit constraints instead of relying on one fixed strategy:
Current algorithm set:
Core design:
loxsort is not presented as a universal performance winner.
Its value is predictable, auditable algorithm selection that respects the actual constraints of the target system.
Status: Experimental.
License: MIT.
loxc is an experimental trainable text codec written in C99.
It is designed for cases where the developer already knows the shape of the transmitted or stored text:
Instead of trying to be a universal compressor, loxc lets you train a codec table from representative sample data, export that table, transfer it, and load it later in an application, tool, or embedded runtime.
Core ideas:
loxc is not intended to compete with gzip, zstd, brotli, or lz4.
Those are mature general-purpose compression systems.
The value of loxc is narrower: provide a small trainable codec option for developers who know their data and want a compact table-driven encoding path for specific text payloads.
It is not encryption and not a universal archive format.
Status: Experimental.
| Project | Description | Tech |
|---|---|---|
| loxdb | Deterministic embedded database for constrained systems and microcontrollers. KV, time-series, and fixed-schema relational tables behind one C99 API. | C99 |
| loxdb_pro_docs | Public API-level documentation for the commercial loxdb_pro module set. | Docs / C API contracts |
| loxdust | Verified persistent object storage with canonical encoding, deterministic layout, recovery operations, and power-cut-oriented validation. | C99 |
| loxbudget | Deterministic, heap-free admission-control library for embedded firmware. Pre-flight gate for risky operations based on resource budgets, rate windows, and calibration. | C99 |
| loxboot | C99 zero-heap bootloader core for embedded firmware. A/B slot model, boot state validation, UART update transport, rollback-oriented boot flow, and platform handoff boundary. | C99 |
| loxguard | Embedded C guard-runtime for supervised execution boundaries, failure events, policy decisions, and blackbox evidence. | C99 |
| loxalarm | Deterministic alarm-state core for embedded firmware. Handles on/off delays, latching, acknowledge flow, shelving, reason flags, and snapshot/restore support. | C99 |
| loxseq | Power-loss-aware step sequencer for embedded firmware. Provides checkpointed step progress and reboot recovery/resume policy per step. | C99 |
| loxperm | Heap-free permissive/interlock evaluator with explainable deny mask, first-out detection, qualifier times, latching, and maintenance bypass. | C99 |
| loxsort | Experimental deterministic sorting library with constraint-aware algorithm dispatch and offline benchmark profiles. | C99 |
| loxc | Experimental trainable C99 text codec for domain-specific payloads using trained lookup tables, matrix-based symbol layout, nested submatrices, and binary encoded output. | C99 |
| micro-toolkit | Collection of small composable embedded C99 libraries. | C99 |
| micronet | LAN-first messaging library for embedded nodes and desktop diagnostics, with peers, groups, data operations, custom traffic, and portable HAL adapters. | C99 |
| IOBusMonitor | Multi-protocol desktop tool for Modbus TCP/RTU and Siemens S7 PLCs. | C# |
| RTULogSuite | Modbus RTU logging toolchain: ESP32 firmware + Windows visualization app. | C++ / C# |
| iotspool | Persistent store-and-forward MQTT queue for embedded systems. | C99 |
| IronFamily.FileEngine | Binary IoT file engines for config, structured logs, and firmware update package formats. | C# / C / tooling |
micronet is a C99 LAN messaging library for embedded nodes and desktop diagnostic tools.
LAN operation is the default and does not require:
Core capabilities:
STUN support, when enabled, is explicit and experimental.
micronet is intended for direct local-network communication where nodes and diagnostic tools need a small, inspectable messaging layer without mandatory cloud services.
micro-toolkit is a collection of composable embedded C99 libraries sharing the same philosophy:
no heap, no dependencies, no code generation β just #include and go.
Toolkit modules:
Embedded-guard libraries bridge diagnostics, monitoring, recovery, and firmware lifecycle behavior.
Small utilities for writing safer and more debuggable embedded C.
Desktop tools and firmware for real-world industrial communication.
Multi-protocol desktop tool for reading, archiving and visualising data from Modbus (TCP / RTU) and Siemens S7 PLCs.
Internal IoT-focused monorepo for IronFamily binary engines (ICFG, ILOG, IUPD) with .NET/native implementations, deterministic testing, and performance benchmarking.
| Back | FazBrowse Home | New Git URL |