Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize MAVLink buffers, remove mavlink_onboard app #145

Closed
LorenzMeier opened this issue Jan 11, 2013 · 1 comment
Closed

Optimize MAVLink buffers, remove mavlink_onboard app #145

LorenzMeier opened this issue Jan 11, 2013 · 1 comment

Comments

@LorenzMeier
Copy link
Member

Currently 2k of RAM are used for MAVLink buffers. 1k is the minimum for a single MAVLink app. If possible the support for multiple UARTs per app should be removed, reducing the buffer requirement to 260+ bytes, and the 2nd mavlink_onboard app should be removed and instead the main app should allow to start twice.

For this a C++ refactoring into a class instantiated at runtime is required.

@LorenzMeier
Copy link
Member Author

Done!

TSC21 pushed a commit to TSC21/Firmware that referenced this issue Feb 15, 2019
Deleted second update of transformation matrix
PX4BuildBot added a commit that referenced this issue Mar 12, 2019
NuttX:
 - https://github.com/PX4-NuttX/nuttx/tree/master
 - PX4/NuttX@82b276a

Changes from PX4/NuttX (PX4/NuttX@1f2f6d8) in current PX4/master (6672284)
PX4/NuttX@1f2f6d8...82b276a

82b276a (HEAD, origin/master) binfmt/nxflat.c:  Trivial design simplification.
622202d binfmt/nxflat.c: Update to last NxFLAT change:  The logic must respect the reference count before freeing the dspace memory region.
ba8714d binfmt/nxflat.c:  Correct a double free debug assertion.  This occurs when groups are enabled:  (1) once via binfmt_exit and unload_module, and (2) once via sched_releasetcb().  this was corrected by adding logic to free/unload the memory once and nullify the pointer so that cannot be freed a second time.  This commit resolves Bitbucket issue #145.
043df95 arch/arm/include/nrf52/ and arch/arm/src/nrf52:  1. Added 52840 family support 2. Use common irq and memory layout header file for 52832 & 52840.
f6b00e1 tools/nxstyle.c:  Fix logic error that prevent detecion of '/' and '/=' as operators.  net/:  Minor updates resulting from testing tools/nxstyle.
0a7f764 Merged in raiden00/nuttx_h7 (pull request #839)
db2310b lib_gethostbyaddrr.c edited online with Bitbucket
f33ed3c *Merged in zhoukejun/nuttx_nucleo-f767zi (pull request #838)
20e7ee5 configs/omnibusf4/README.txt:  Update README.
aa4f7c9 graphics/nxmu/nxmu_start.c:  Extend nxmu_start so that receives a display number as an argument.  This makes it possible to have multiple instances of the NX server running on boards that support multiple displays.  Also includes updates to boardctl() to accept display number paramters.

Apps:
 - https://github.com/PX4/NuttX-apps/tree/master
 - PX4/NuttX-apps@520bd6a

Changes from PX4/NuttX-apps (PX4/NuttX-apps@7db2a35) in current PX4/master (6672284)
PX4/NuttX-apps@7db2a35...520bd6a

520bd6a (HEAD -> master, origin/master) Merged in zhoukejun/apps_nucleo_f767zi (pull request #171)
e063e93 apps/examples/nxterm:  NxWM passed the size of the NxTK sub-window but nxterm example passed the size of the complete NxTK window.  They must be made consistent.
66af5b4 apps/Nxwidgets:  Fix some recently introduced errors found in build testing.
e4e00f7 apps/examples/sx127x_demo/Kconfig:  Fix misplaced 'if'
c019c9d apps/examples/modbusmaster/mbmaster_main.c:  eMBMasterRegHoldingCB cannot be static.
53e6f4b apps/examples/nxterm, graphics/NxWidgets:  Replace illegal direct calls to nxterm_redraw() and nxterm_kbdin() with new boardctl() calls.
6529a84 apps/examples/nxterm:  Most configuration options were not available in the Kconfig file.
c341abf graphics/NxWidgets/nxwm/src/cnxterm.cxx:  Part of the last change was still in he editor.
061b433 apps/examples/nxterm and graphics/NxWidgets/nxwm:  Replace direct calls to nxtk_register with legal, indirect calls via boardctrl(BOARDIOC_NXTERM).  Replace calls to (deleted) nxterm_unregister().  The correc way to delete a driver is by unlink'ing it.
2eaf2e0 (origin/px4_firmware_nuttx-7.28+_rt) aps/system/cu/Kconfig:  CU term depends on TERMIOS and should select it.
PX4BuildBot added a commit that referenced this issue Mar 12, 2019
NuttX:
 - https://github.com/PX4-NuttX/nuttx/tree/master
 - PX4/NuttX@4802eb6

Changes from PX4/NuttX (PX4/NuttX@1f2f6d8) in current PX4/master (2ae2331)
PX4/NuttX@1f2f6d8...4802eb6

4802eb6 (HEAD, origin/master) tools/nxstyle.c:  Fix a bacward test in the previous commit.
ba859ad tools/nxstyle.c:  Don't complain about certain lowercase characters in otherwise uppercase pre-processor identifers:  IPv6, IPv4, ICMPv6, IGMPv2, p as a decimal point, d signifying a divisor.  It was a bad idea to let the door open a crack for there.  While they improve readability, the inconsistently also causes other problems.
82b276a binfmt/nxflat.c:  Trivial design simplification.
622202d binfmt/nxflat.c: Update to last NxFLAT change:  The logic must respect the reference count before freeing the dspace memory region.
ba8714d binfmt/nxflat.c:  Correct a double free debug assertion.  This occurs when groups are enabled:  (1) once via binfmt_exit and unload_module, and (2) once via sched_releasetcb().  this was corrected by adding logic to free/unload the memory once and nullify the pointer so that cannot be freed a second time.  This commit resolves Bitbucket issue #145.
043df95 arch/arm/include/nrf52/ and arch/arm/src/nrf52:  1. Added 52840 family support 2. Use common irq and memory layout header file for 52832 & 52840.
f6b00e1 tools/nxstyle.c:  Fix logic error that prevent detecion of '/' and '/=' as operators.  net/:  Minor updates resulting from testing tools/nxstyle.
0a7f764 Merged in raiden00/nuttx_h7 (pull request #839)
db2310b lib_gethostbyaddrr.c edited online with Bitbucket
f33ed3c *Merged in zhoukejun/nuttx_nucleo-f767zi (pull request #838)

Apps:
 - https://github.com/PX4/NuttX-apps/tree/master
 - PX4/NuttX-apps@520bd6a

Changes from PX4/NuttX-apps (PX4/NuttX-apps@7db2a35) in current PX4/master (2ae2331)
PX4/NuttX-apps@7db2a35...520bd6a

520bd6a (HEAD -> master, origin/master) Merged in zhoukejun/apps_nucleo_f767zi (pull request #171)
e063e93 apps/examples/nxterm:  NxWM passed the size of the NxTK sub-window but nxterm example passed the size of the complete NxTK window.  They must be made consistent.
66af5b4 apps/Nxwidgets:  Fix some recently introduced errors found in build testing.
e4e00f7 apps/examples/sx127x_demo/Kconfig:  Fix misplaced 'if'
c019c9d apps/examples/modbusmaster/mbmaster_main.c:  eMBMasterRegHoldingCB cannot be static.
53e6f4b apps/examples/nxterm, graphics/NxWidgets:  Replace illegal direct calls to nxterm_redraw() and nxterm_kbdin() with new boardctl() calls.
6529a84 apps/examples/nxterm:  Most configuration options were not available in the Kconfig file.
c341abf graphics/NxWidgets/nxwm/src/cnxterm.cxx:  Part of the last change was still in he editor.
061b433 apps/examples/nxterm and graphics/NxWidgets/nxwm:  Replace direct calls to nxtk_register with legal, indirect calls via boardctrl(BOARDIOC_NXTERM).  Replace calls to (deleted) nxterm_unregister().  The correc way to delete a driver is by unlink'ing it.
2eaf2e0 (origin/px4_firmware_nuttx-7.28+_rt) aps/system/cu/Kconfig:  CU term depends on TERMIOS and should select it.
PX4BuildBot added a commit that referenced this issue Mar 13, 2019
NuttX:
 - https://github.com/PX4-NuttX/nuttx/tree/master
 - PX4/NuttX@1389d90

Changes from PX4/NuttX (PX4/NuttX@1f2f6d8) in current PX4/master (2ae2331)
PX4/NuttX@1f2f6d8...1389d90

1389d90 (HEAD, origin/master) arch/arm/src/nrf52:   1. added RNG device driver 2. added errdata to correct temp which will be used by RNG module 3. use general task_trigger / event_clear inline api for all driver.
04fe412 tools/nxstyle.c: Costmetic alignment and corrections to comments.
4802eb6 tools/nxstyle.c:  Fix a bacward test in the previous commit.
ba859ad tools/nxstyle.c:  Don't complain about certain lowercase characters in otherwise uppercase pre-processor identifers:  IPv6, IPv4, ICMPv6, IGMPv2, p as a decimal point, d signifying a divisor.  It was a bad idea to let the door open a crack for there.  While they improve readability, the inconsistently also causes other problems.
82b276a binfmt/nxflat.c:  Trivial design simplification.
622202d binfmt/nxflat.c: Update to last NxFLAT change:  The logic must respect the reference count before freeing the dspace memory region.
ba8714d binfmt/nxflat.c:  Correct a double free debug assertion.  This occurs when groups are enabled:  (1) once via binfmt_exit and unload_module, and (2) once via sched_releasetcb().  this was corrected by adding logic to free/unload the memory once and nullify the pointer so that cannot be freed a second time.  This commit resolves Bitbucket issue #145.
043df95 arch/arm/include/nrf52/ and arch/arm/src/nrf52:  1. Added 52840 family support 2. Use common irq and memory layout header file for 52832 & 52840.
f6b00e1 tools/nxstyle.c:  Fix logic error that prevent detecion of '/' and '/=' as operators.  net/:  Minor updates resulting from testing tools/nxstyle.
0a7f764 Merged in raiden00/nuttx_h7 (pull request #839)

Apps:
 - https://github.com/PX4/NuttX-apps/tree/master
 - PX4/NuttX-apps@520bd6a

Changes from PX4/NuttX-apps (PX4/NuttX-apps@7db2a35) in current PX4/master (2ae2331)
PX4/NuttX-apps@7db2a35...520bd6a

520bd6a (HEAD -> master, origin/master) Merged in zhoukejun/apps_nucleo_f767zi (pull request #171)
e063e93 apps/examples/nxterm:  NxWM passed the size of the NxTK sub-window but nxterm example passed the size of the complete NxTK window.  They must be made consistent.
66af5b4 apps/Nxwidgets:  Fix some recently introduced errors found in build testing.
e4e00f7 apps/examples/sx127x_demo/Kconfig:  Fix misplaced 'if'
c019c9d apps/examples/modbusmaster/mbmaster_main.c:  eMBMasterRegHoldingCB cannot be static.
53e6f4b apps/examples/nxterm, graphics/NxWidgets:  Replace illegal direct calls to nxterm_redraw() and nxterm_kbdin() with new boardctl() calls.
6529a84 apps/examples/nxterm:  Most configuration options were not available in the Kconfig file.
c341abf graphics/NxWidgets/nxwm/src/cnxterm.cxx:  Part of the last change was still in he editor.
061b433 apps/examples/nxterm and graphics/NxWidgets/nxwm:  Replace direct calls to nxtk_register with legal, indirect calls via boardctrl(BOARDIOC_NXTERM).  Replace calls to (deleted) nxterm_unregister().  The correc way to delete a driver is by unlink'ing it.
2eaf2e0 (origin/px4_firmware_nuttx-7.28+_rt) aps/system/cu/Kconfig:  CU term depends on TERMIOS and should select it.
PX4BuildBot added a commit that referenced this issue Mar 13, 2019
NuttX:
 - https://github.com/PX4-NuttX/nuttx/tree/master
 - PX4/NuttX@0454ae2

Changes from PX4/NuttX (PX4/NuttX@1f2f6d8) in current PX4/master (2ae2331)
PX4/NuttX@1f2f6d8...0454ae2

0454ae2 (HEAD, origin/master) This commit removes naming associated with and naming for the now non-existent NXFE graphics layer.
e780ee3 include/nuttx/nx/nxmu.h:  Remove prototype of non-existent function.
1389d90 arch/arm/src/nrf52:   1. added RNG device driver 2. added errdata to correct temp which will be used by RNG module 3. use general task_trigger / event_clear inline api for all driver.
04fe412 tools/nxstyle.c: Costmetic alignment and corrections to comments.
4802eb6 tools/nxstyle.c:  Fix a bacward test in the previous commit.
ba859ad tools/nxstyle.c:  Don't complain about certain lowercase characters in otherwise uppercase pre-processor identifers:  IPv6, IPv4, ICMPv6, IGMPv2, p as a decimal point, d signifying a divisor.  It was a bad idea to let the door open a crack for there.  While they improve readability, the inconsistently also causes other problems.
82b276a binfmt/nxflat.c:  Trivial design simplification.
622202d binfmt/nxflat.c: Update to last NxFLAT change:  The logic must respect the reference count before freeing the dspace memory region.
ba8714d binfmt/nxflat.c:  Correct a double free debug assertion.  This occurs when groups are enabled:  (1) once via binfmt_exit and unload_module, and (2) once via sched_releasetcb().  this was corrected by adding logic to free/unload the memory once and nullify the pointer so that cannot be freed a second time.  This commit resolves Bitbucket issue #145.
043df95 arch/arm/include/nrf52/ and arch/arm/src/nrf52:  1. Added 52840 family support 2. Use common irq and memory layout header file for 52832 & 52840.

Apps:
 - https://github.com/PX4/NuttX-apps/tree/master
 - PX4/NuttX-apps@520bd6a

Changes from PX4/NuttX-apps (PX4/NuttX-apps@7db2a35) in current PX4/master (2ae2331)
PX4/NuttX-apps@7db2a35...520bd6a

520bd6a (HEAD -> master, origin/master) Merged in zhoukejun/apps_nucleo_f767zi (pull request #171)
e063e93 apps/examples/nxterm:  NxWM passed the size of the NxTK sub-window but nxterm example passed the size of the complete NxTK window.  They must be made consistent.
66af5b4 apps/Nxwidgets:  Fix some recently introduced errors found in build testing.
e4e00f7 apps/examples/sx127x_demo/Kconfig:  Fix misplaced 'if'
c019c9d apps/examples/modbusmaster/mbmaster_main.c:  eMBMasterRegHoldingCB cannot be static.
53e6f4b apps/examples/nxterm, graphics/NxWidgets:  Replace illegal direct calls to nxterm_redraw() and nxterm_kbdin() with new boardctl() calls.
6529a84 apps/examples/nxterm:  Most configuration options were not available in the Kconfig file.
c341abf graphics/NxWidgets/nxwm/src/cnxterm.cxx:  Part of the last change was still in he editor.
061b433 apps/examples/nxterm and graphics/NxWidgets/nxwm:  Replace direct calls to nxtk_register with legal, indirect calls via boardctrl(BOARDIOC_NXTERM).  Replace calls to (deleted) nxterm_unregister().  The correc way to delete a driver is by unlink'ing it.
2eaf2e0 (origin/px4_firmware_nuttx-7.28+_rt) aps/system/cu/Kconfig:  CU term depends on TERMIOS and should select it.
PX4BuildBot added a commit that referenced this issue Aug 24, 2020
    - matrix in PX4/Firmware (1307eb9): PX4/PX4-Matrix@25c0455
    - matrix current upstream: PX4/PX4-Matrix@e101edc
    - Changes: PX4/PX4-Matrix@25c0455...e101edc

    e101edc 2020-08-24 Julian Oes - Matrix: fix warning if M == N (#146)
cd8ad15 2020-08-24 Morten Fyhn Amundsen - Make wrap() work with integer types (#145)
PX4BuildBot added a commit that referenced this issue Aug 25, 2020
    - matrix in PX4/Firmware (3ebe06a): PX4/PX4-Matrix@25c0455
    - matrix current upstream: PX4/PX4-Matrix@e101edc
    - Changes: PX4/PX4-Matrix@25c0455...e101edc

    e101edc 2020-08-24 Julian Oes - Matrix: fix warning if M == N (#146)
cd8ad15 2020-08-24 Morten Fyhn Amundsen - Make wrap() work with integer types (#145)
PX4BuildBot added a commit that referenced this issue Aug 25, 2020
    - matrix in PX4/Firmware (bad5c2b): PX4/PX4-Matrix@25c0455
    - matrix current upstream: PX4/PX4-Matrix@3a5bfb2
    - Changes: PX4/PX4-Matrix@25c0455...3a5bfb2

    3a5bfb2 2020-08-25 Julian Oes - matrix: inline to prevent multiple definitions (#147)
e101edc 2020-08-24 Julian Oes - Matrix: fix warning if M == N (#146)
cd8ad15 2020-08-24 Morten Fyhn Amundsen - Make wrap() work with integer types (#145)
PX4BuildBot added a commit that referenced this issue Aug 26, 2020
    - matrix in PX4/Firmware (f1571b2): PX4/PX4-Matrix@25c0455
    - matrix current upstream: PX4/PX4-Matrix@3a5bfb2
    - Changes: PX4/PX4-Matrix@25c0455...3a5bfb2

    3a5bfb2 2020-08-25 Julian Oes - matrix: inline to prevent multiple definitions (#147)
e101edc 2020-08-24 Julian Oes - Matrix: fix warning if M == N (#146)
cd8ad15 2020-08-24 Morten Fyhn Amundsen - Make wrap() work with integer types (#145)
PX4BuildBot added a commit that referenced this issue Aug 26, 2020
    - matrix in PX4/Firmware (3eb6eb4): PX4/PX4-Matrix@25c0455
    - matrix current upstream: PX4/PX4-Matrix@3a5bfb2
    - Changes: PX4/PX4-Matrix@25c0455...3a5bfb2

    3a5bfb2 2020-08-25 Julian Oes - matrix: inline to prevent multiple definitions (#147)
e101edc 2020-08-24 Julian Oes - Matrix: fix warning if M == N (#146)
cd8ad15 2020-08-24 Morten Fyhn Amundsen - Make wrap() work with integer types (#145)
PX4BuildBot added a commit that referenced this issue Aug 27, 2020
    - matrix in PX4/Firmware (154d86a): PX4/PX4-Matrix@25c0455
    - matrix current upstream: PX4/PX4-Matrix@13f092a
    - Changes: PX4/PX4-Matrix@25c0455...13f092a

    13f092a 2020-08-26 Kamil Ritz - sparse quadratic form
3a5bfb2 2020-08-25 Julian Oes - matrix: inline to prevent multiple definitions (#147)
e101edc 2020-08-24 Julian Oes - Matrix: fix warning if M == N (#146)
cd8ad15 2020-08-24 Morten Fyhn Amundsen - Make wrap() work with integer types (#145)
PX4BuildBot added a commit that referenced this issue Aug 27, 2020
    - matrix in PX4/Firmware (45dec28): PX4/PX4-Matrix@25c0455
    - matrix current upstream: PX4/PX4-Matrix@13f092a
    - Changes: PX4/PX4-Matrix@25c0455...13f092a

    13f092a 2020-08-26 Kamil Ritz - sparse quadratic form
3a5bfb2 2020-08-25 Julian Oes - matrix: inline to prevent multiple definitions (#147)
e101edc 2020-08-24 Julian Oes - Matrix: fix warning if M == N (#146)
cd8ad15 2020-08-24 Morten Fyhn Amundsen - Make wrap() work with integer types (#145)
PX4BuildBot added a commit that referenced this issue Aug 28, 2020
    - matrix in PX4/Firmware (5d01472): PX4/PX4-Matrix@25c0455
    - matrix current upstream: PX4/PX4-Matrix@ce6b10b
    - Changes: PX4/PX4-Matrix@25c0455...ce6b10b

    ce6b10b 2020-08-27 Julian Oes - Fix clang-tidy warnings
13f092a 2020-08-26 Kamil Ritz - sparse quadratic form
3a5bfb2 2020-08-25 Julian Oes - matrix: inline to prevent multiple definitions (#147)
e101edc 2020-08-24 Julian Oes - Matrix: fix warning if M == N (#146)
cd8ad15 2020-08-24 Morten Fyhn Amundsen - Make wrap() work with integer types (#145)
dagar pushed a commit that referenced this issue Aug 28, 2020
    - matrix in PX4/Firmware (5d01472): PX4/PX4-Matrix@25c0455
    - matrix current upstream: PX4/PX4-Matrix@ce6b10b
    - Changes: PX4/PX4-Matrix@25c0455...ce6b10b

    ce6b10b 2020-08-27 Julian Oes - Fix clang-tidy warnings
13f092a 2020-08-26 Kamil Ritz - sparse quadratic form
3a5bfb2 2020-08-25 Julian Oes - matrix: inline to prevent multiple definitions (#147)
e101edc 2020-08-24 Julian Oes - Matrix: fix warning if M == N (#146)
cd8ad15 2020-08-24 Morten Fyhn Amundsen - Make wrap() work with integer types (#145)
Hoeze pushed a commit to FSRH/Firmware that referenced this issue Sep 20, 2020
    - matrix in PX4/Firmware (5d01472): PX4/PX4-Matrix@25c0455
    - matrix current upstream: PX4/PX4-Matrix@ce6b10b
    - Changes: PX4/PX4-Matrix@25c0455...ce6b10b

    ce6b10b 2020-08-27 Julian Oes - Fix clang-tidy warnings
13f092a 2020-08-26 Kamil Ritz - sparse quadratic form
3a5bfb2 2020-08-25 Julian Oes - matrix: inline to prevent multiple definitions (PX4#147)
e101edc 2020-08-24 Julian Oes - Matrix: fix warning if M == N (PX4#146)
cd8ad15 2020-08-24 Morten Fyhn Amundsen - Make wrap() work with integer types (PX4#145)
dagar pushed a commit to dagar/PX4-Firmware that referenced this issue Jul 23, 2021
* Make wrap() work with integers
PX4BuildBot added a commit that referenced this issue Jan 29, 2024
…39:16 UTC 2024

    - public_regulated_data_types in PX4/Firmware (55dae53): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@bb5f918
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...bb5f918

    bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jan 29, 2024
…39:15 UTC 2024

    - public_regulated_data_types in PX4/Firmware (d276213): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@bb5f918
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...bb5f918

    bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jan 30, 2024
…39:14 UTC 2024

    - public_regulated_data_types in PX4/Firmware (3fb54d9): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@bb5f918
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...bb5f918

    bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jan 30, 2024
…38:49 UTC 2024

    - public_regulated_data_types in PX4/Firmware (90e1a1d): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@bb5f918
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...bb5f918

    bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jan 31, 2024
…40:00 UTC 2024

    - public_regulated_data_types in PX4/Firmware (45594c7): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@bb5f918
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...bb5f918

    bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jan 31, 2024
…39:24 UTC 2024

    - public_regulated_data_types in PX4/Firmware (77433d1): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@bb5f918
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...bb5f918

    bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Feb 1, 2024
…9:20 UTC 2024

    - public_regulated_data_types in PX4/Firmware (1b4652a): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@bb5f918
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...bb5f918

    bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Feb 1, 2024
…9:39 UTC 2024

    - public_regulated_data_types in PX4/Firmware (9894efc): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@bb5f918
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...bb5f918

    bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 22, 2024
…39:09 UTC 2024

    - public_regulated_data_types in PX4/Firmware (ccebd99): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 23, 2024
…39:04 UTC 2024

    - public_regulated_data_types in PX4/Firmware (dc5891e): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 23, 2024
…39:07 UTC 2024

    - public_regulated_data_types in PX4/Firmware (8e393cb): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 24, 2024
…39:13 UTC 2024

    - public_regulated_data_types in PX4/Firmware (ed3a3ce): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 24, 2024
…39:23 UTC 2024

    - public_regulated_data_types in PX4/Firmware (6e951b6): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 25, 2024
…39:59 UTC 2024

    - public_regulated_data_types in PX4/Firmware (126b558): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 25, 2024
…39:02 UTC 2024

    - public_regulated_data_types in PX4/Firmware (538092c): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 26, 2024
…39:05 UTC 2024

    - public_regulated_data_types in PX4/Firmware (4367a47): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 26, 2024
…39:07 UTC 2024

    - public_regulated_data_types in PX4/Firmware (afe2545): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 27, 2024
…39:04 UTC 2024

    - public_regulated_data_types in PX4/Firmware (bd02aba): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 27, 2024
…39:10 UTC 2024

    - public_regulated_data_types in PX4/Firmware (00eb2cf): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 28, 2024
…39:19 UTC 2024

    - public_regulated_data_types in PX4/Firmware (0187c5c): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 28, 2024
…38:27 UTC 2024

    - public_regulated_data_types in PX4/Firmware (11cc8e3): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 29, 2024
…39:09 UTC 2024

    - public_regulated_data_types in PX4/Firmware (ced162e): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 29, 2024
…39:00 UTC 2024

    - public_regulated_data_types in PX4/Firmware (0b008a5): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 30, 2024
…39:06 UTC 2024

    - public_regulated_data_types in PX4/Firmware (307a1b5): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jun 30, 2024
…39:04 UTC 2024

    - public_regulated_data_types in PX4/Firmware (b8d56f0): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jul 1, 2024
…9:10 UTC 2024

    - public_regulated_data_types in PX4/Firmware (2fe3aca): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jul 1, 2024
…9:07 UTC 2024

    - public_regulated_data_types in PX4/Firmware (0d890b6): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jul 2, 2024
…9:33 UTC 2024

    - public_regulated_data_types in PX4/Firmware (24b182f): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jul 2, 2024
…9:08 UTC 2024

    - public_regulated_data_types in PX4/Firmware (2cbd1a8): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jul 3, 2024
…9:11 UTC 2024

    - public_regulated_data_types in PX4/Firmware (143c40b): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jul 3, 2024
…9:05 UTC 2024

    - public_regulated_data_types in PX4/Firmware (5eec8c2): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jul 4, 2024
…9:07 UTC 2024

    - public_regulated_data_types in PX4/Firmware (3aa55dc): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jul 4, 2024
…9:07 UTC 2024

    - public_regulated_data_types in PX4/Firmware (65e09ce): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jul 5, 2024
…9:05 UTC 2024

    - public_regulated_data_types in PX4/Firmware (9eff50e): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jul 5, 2024
…9:07 UTC 2024

    - public_regulated_data_types in PX4/Firmware (7899b42): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jul 6, 2024
…9:07 UTC 2024

    - public_regulated_data_types in PX4/Firmware (bbc8992): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jul 6, 2024
…9:08 UTC 2024

    - public_regulated_data_types in PX4/Firmware (cb42017): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
PX4BuildBot added a commit that referenced this issue Jul 7, 2024
…9:11 UTC 2024

    - public_regulated_data_types in PX4/Firmware (a4eccd5): OpenCyphal/public_regulated_data_types@d0bd651
    - public_regulated_data_types current upstream: OpenCyphal/public_regulated_data_types@f9f6790
    - Changes: OpenCyphal/public_regulated_data_types@d0bd651...f9f6790

    f9f6790 2024-03-19 Pavel Kirienko - Hotfix: reduce the extent of ExecuteCommand.1.3 (#147)
ec27883 2024-03-19 EliotRossRob - Add output field in response (#146)
bb5f918 2024-01-28 Will MacCormack - Add COMMAND_IDENTIFY (#145)
935973b 2023-02-16 Pavel Kirienko - Stabilize uavcan.node.port.List (#138)
16b4f31 2023-02-11 Pavel Kirienko - Update the magnetic quantities in the SI namespace; add luminance; fix the PORT_NAME regexp (#137)
70573cb 2022-05-06 Pavel Kirienko - Automatic extension change & Cyphalization (#127)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant