Skip to content

Commit 1d07139

Browse files
committed
updated test files table and command page
1 parent eddbe13 commit 1d07139

File tree

2 files changed

+10
-23
lines changed

2 files changed

+10
-23
lines changed

obc-members/command.md

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -64,18 +64,6 @@ Use CRC-16-CCITT (or your protocol-specific CRC) on the first 12 bytes (`[0]` to
6464

6565
---
6666

67-
### 📁 Add File Download
68-
69-
To allow downloading of the `.c` file (e.g., command handler or reset script) from your website:
70-
71-
```html
72-
<a href="/files/reset_pic_command.c" download>Download Reset PIC Command Code</a>
73-
```
74-
75-
> ✅ Ensure the file `reset_pic_command.c` is stored in the correct `/files/` directory on your web server.
76-
77-
---
78-
7967
### 📘 Summary
8068

8169
* Actual command = 14 bytes (Header + Payload + CRC)
@@ -84,4 +72,3 @@ To allow downloading of the `.c` file (e.g., command handler or reset script) fr
8472
* Command ID1 and payload define the operation
8573
* CRC must be valid to accept command
8674

87-
---

obc-members/test-file.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ This file helps catch software logic issues before they affect the satellite har
3535

3636
| Component | Description |
3737
|------------------------|-----------------------------------------------------------------------------|
38-
| [`test_obc_main.c`](/assets/code/test_obc_main.c) | Main test runner that initializes the OBC environment and simulates execution |
39-
| [`mock_uart.c` ](/assets/code/mock_uart.c) | Simulated UART communication layer with buffers to emulate data exchange |
40-
| [`mock_uart.h` ](/assets/code/mock_uart.h) | Simulated UART communication layer with buffers to emulate data exchange |
41-
| `mock_flash.c` | Emulated flash memory to verify write and read operations |
42-
| `mock_flash.h` | Emulated flash memory to verify write and read operations |
43-
| [`test_commands.c` ](/assets/code/test_commands.c) | Functions for creating and dispatching test commands |
44-
| [`test_commands.h` ](/assets/code/test_commands.h) | Functions for creating and dispatching test commands |
45-
| [`assert_utils.c` ](/assets/code/assert_utils.c) | Custom assert functions for validating results |
46-
| [`assert_utils.h` ](/assets/code/assert_utils.h) | Custom assert functions for validating results |
47-
| `test_data/test_cases.txt`| List of binary or ASCII commands for test input |
38+
| <a href="/assets/code/test_obc_main.c" download>test_obc_main.c</a> | Main test runner that initializes the OBC environment and simulates execution |
39+
| <a href="/assets/code/mock_uart.c" download>mock_uart.c</a> | Simulated UART communication layer with buffers to emulate data exchange |
40+
| <a href="/assets/code/mock_uart.h" download>mock_uart.h</a> | Simulated UART communication layer with buffers to emulate data exchange |
41+
| `mock_flash.c` | Emulated flash memory to verify write and read operations |
42+
| `mock_flash.h` | Emulated flash memory to verify write and read operations |
43+
| <a href="/assets/code/test_commands.c" download>test_commands.c</a> | Functions for creating and dispatching test commands |
44+
| <a href="/assets/code/test_commands.h" download>test_commands.h</a> | Functions for creating and dispatching test commands |
45+
| <a href="/assets/code/assert_utils.c" download>assert_utils.c</a> | Custom assert functions for validating results |
46+
| <a href="/assets/code/assert_utils.h" download>assert_utils.h</a> | Custom assert functions for validating results |
47+
| <a href="/assets/code/test_data/test_cases.txt" download>test_cases.txt</a> | List of binary or ASCII commands for test input |
4848

4949
## Download Test File
5050

0 commit comments

Comments
 (0)