Merge remote-tracking branch 'origin/develop' into add_heater_info_set
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
This commit is contained in:
commit
7fa8a497f2
@ -34,6 +34,8 @@ eive-tmtc: v2.12.7
|
|||||||
|
|
||||||
## Added
|
## Added
|
||||||
|
|
||||||
|
- git post checkout hook which initializes and updates the submodules
|
||||||
|
automatically.
|
||||||
- In case the ACS Controller does recognize more than one RW to be invalid and therefore not
|
- In case the ACS Controller does recognize more than one RW to be invalid and therefore not
|
||||||
available, it does not perform pointing control but aborts shortly after `sensorProcessing`. If the
|
available, it does not perform pointing control but aborts shortly after `sensorProcessing`. If the
|
||||||
problem persits for 5 ACS cycles, the `MULTIPLE_RW_INVALID` event is triggered, which invokes the
|
problem persits for 5 ACS cycles, the `MULTIPLE_RW_INVALID` event is triggered, which invokes the
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
root="$(pwd)"
|
||||||
|
ln -s "$root/hooks" "$root/.git/hooks"
|
||||||
|
|
||||||
git submodule update --init fsfw thirdparty/rapidcsv thirdparty/lwgps thirdparty/json
|
git submodule update --init fsfw thirdparty/rapidcsv thirdparty/lwgps thirdparty/json
|
||||||
|
2
fsfw
2
fsfw
@ -1 +1 @@
|
|||||||
Subproject commit a6d707a7db589136ac2bd917cd8b3a3e2c16a0e4
|
Subproject commit be015b4c669995dc55bc316b006699be8542d941
|
6
hooks/post-checkout
Executable file
6
hooks/post-checkout
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
#
|
||||||
|
# update submodules after checkout
|
||||||
|
|
||||||
|
git submodule init
|
||||||
|
git submodule update
|
Loading…
Reference in New Issue
Block a user