-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Welcome to the official wiki for the TSAT Utilities Kit (TUK)! This project is aimed at streamlining some common operations across subsystems. Here, you’ll find comprehensive documentation to help you get started with the kit and understand its features.
🚧 This wiki is a Work in Progress. Some info will be missing. I will be updating intermittingly when I have time.
To get started with TUK, you can follow these simple steps:
All you need is any old STM32 project!
- In STM32CubeIDE, add a folder named "External" to your project root.
- Then open your terminal, and navigate to your project folder in your terminal:
cd your/project/path
- Add this repository as a submodule into your project with:
git submodule add https://github.com/UMSATS/tsat-utilities-kit External/tsat-utilities-kit
- From STM32CubeIDE, right click on the
tsat-utilities-kit/Inc
folder and selectAdd/remove include path...
.
- Leave all configurations selected and hit
OK
.
- Next, follow the CAN Wrapper Installation Guide to enable CAN and TIM16 as required by the CAN Wrapper Module.
- Go back to your terminal and commit the changes. Note this will also commit any other changes you've made to the project. Consider committing existing changes in a separate commit.
git add -A git commit -m "Install TSAT Utilities Kit"
- Push to the remote repository to sync GitHub with your local repository.
git push origin main
The following steps will update your copy of TUK to the most recent commit:
- Ensure your project repository is up-to-date and clean (
git pull
to update, thengit status
to check if it's clean. commit and push if it's not). -
cd
into the root folder of the submodule. - Enter
git pull
. -
cd
back to the root folder of your project. - Enter:
git add -A
git commit -m "Update TSAT Utilities Kit"
git push
If you have multiple submodules in your project, you can update all of them at once by replacing steps 2-4 with:
git submodule foreach git pull origin main
Now you can include the kit in your code by using #include "tuk/tuk.h"
, or by including individual modules separately via a tuk/XXXX.h
path.
Note that most modules require initialisation before use. Refer to the module's usage guide for more info.
Here's some example code using the CAN Wrapper Module:
#include "tuk/can_wrapper.h"
#include <stdbool.h>
bool Report_PCB_Temp()
{
uint16_t temp;
bool success = TMP235_Read_Temp(&temp);
if (success)
{
CANMessage my_msg;
my_msg.cmd = CMD_CDH_PROCESS_PCB_TEMP;
SET_ARG(my_msg, 0, temp);
CANWrapper_Transmit(NODE_CDH, &my_msg);
}
return success;
}
Each module has its own usage guide below:
- CAN Wrapper Module: This module wraps a simpler interface around HAL's CAN interface for sending & receiving messages onboard the TSAT satellite.
- Debug Module: Contains debugging utilities, such as print macros and a logger for storing diagnostic data.
More things are coming soon!
- Update Installer
- assert.h for the Debug Module
- Flash Module
If you encounter any issues or have any questions, contact me at [email protected]. If you find a bug, feel free to open an issue on GitHub.