Performing Sliding T-Test Using MATLAB

Performing Sliding T-Test Using MATLAB

First Eight Performing Sliding T-Test Using MATLAB —— Complete Code at the End Star System Author: Eighth Star System – Stone Man Email: [email protected] Performing Sliding T-Test Using MATLAB clc;clear;close all; %% Read Data load data.mat % Read data time = data(:,1); % Time series data sw = data(:,2); % Corresponding data Sliding T-Test step … Read more

C# State Machine: A Tool for Parsing Binary Protocols

C# State Machine: A Tool for Parsing Binary Protocols

C# State Machine: A Tool for Parsing Binary Protocols Hello everyone! Today I want to share a very useful technique – using a state machine to parse binary protocols. In our work, we often need to handle various communication protocols, such as serial communication and network protocols. Using a state machine to tackle these problems … Read more

Implementing File System Interfaces in C#

Implementing File System Interfaces in C#

Implementing File System Interfaces in C#: Building a Robust File Operation System Hello everyone! Today I want to share with you how to implement a flexible and extensible file system interface in C#. In actual development, we often need to handle file operations, such as reading and writing configuration files, processing logs, and importing and … Read more

How to Complete Unit Testing for Embedded Code?

How to Complete Unit Testing for Embedded Code?

In software development, every change in requirements generally requires rewriting code, and after code changes, functionality testing is needed. Of course, before functionality testing, unit testing of the code is necessary to avoid unverified scenarios after code modifications, which can lead to various issues. Using a testing framework to quickly complete unit testing of the … Read more

Embedded Software Design for Testability

Embedded Software Design for Testability

“Star Public Account“, Let’s Progress Together! Hello everyone, I am Mixed Cuisine Jun. This time we will introduce embedded software design for testability. What is testability? It means that after you finish writing a software module/function interface, you can conveniently and comprehensively perform self-testing. Let’s take a simple example to understand testable software. There is … Read more

Designing Testable Software in Embedded Systems

Designing Testable Software in Embedded Systems

Follow+Star Public Number, don’t miss out on exciting content Source | Embedded Miscellaneous Today we will introduce the design of testable software in embedded systems. What is testability? It means that after you write the software module/function interface, you can conveniently and comprehensively perform self-testing. Let’s look at a simple example to understand testable software. … Read more