Commit Graph

40 Commits

Author SHA1 Message Date
Matthijs Kooijman 234459a1b3
Merge 9735e00c0c into 139e8d28bc 2025-03-12 02:30:53 +01:00
Rania JMAI 139e8d28bc [HAL] Upload new fixes 2025-03-10 13:28:25 +01:00
Ali Labbene ad0502685e [DOC] Update './Projects/Release_Notes.html' 2025-02-28 12:08:03 +01:00
Rania JMAI 9d77b66f25 Release v1.3.1 2025-01-30 09:55:17 +01:00
Rania JMAI 9ebb49525b [BSP] Replace 'BSP/Components/<component>' folders by submodules 2024-12-09 14:30:27 +01:00
karim 99e6b06c87 [HAL] Upload new fixes 2024-09-27 10:12:11 +01:00
Rania JMAI 72f7426a31 [HAL] Upload new fixes 2024-08-26 09:21:55 +01:00
Rania JMAI 5420286be0 [HAL] Upload new fixes 2024-07-23 12:25:42 +01:00
Rania JMAI e3bf80c6af [HAL] Upload new fixes 2024-06-20 14:19:57 +01:00
karim db4c58b694 [HAL] Upload new fixes 2024-06-14 11:44:39 +01:00
Tasnim 44ecf7c043 [HAL] Upload new fixes 2024-05-15 12:41:03 +01:00
karim eec7ff9694 [HAL] Upload new fixes 2024-04-19 12:17:27 +01:00
karim 788f569cd5 [HAL] Upload new fixe 2024-03-29 14:23:54 +01:00
Rania JMAI b3eb1439d3 [BSP] Replace 'BSP/<board>' folders by submodules 2024-02-26 15:43:07 +01:00
Tasnim 28a54d00a0 [HAL] Upload new fixes 2024-01-25 16:55:13 +01:00
Ali Labbene 7950099d0d [DOC] Highlight important info in README.md 2024-01-15 18:47:55 +01:00
Ali Labbene aea804c529 [PRJ] Add the list of unavailable projects into the README.md file 2024-01-15 16:59:46 +01:00
Ali Labbene cf151e1d31 [HAL] Upload new fixes 2023-12-19 11:41:01 +01:00
Tasnim 12becb489e [HAL] Upload new fixes 2023-11-10 15:16:42 +01:00
Ali Labbene 4dd35d67fe Fix typos in README.md 2023-10-30 12:46:10 +01:00
Rania JMAI 7879773a53 [CMSIS][HAL] Replace 'CMSIS Device' and 'HAL Driver' folders by submodules 2023-10-25 17:28:31 +01:00
Tasnim 5b47f70ce5 Add SECURITY.md 2023-05-23 17:30:03 +01:00
Tasnim 8a8140f342 [DOC] Correct typo in README.md 2023-03-27 14:05:16 +01:00
Ali Labbene 3840cc617f [PRJ] Remove projects using MW libraries subject to click-thru
Rationale:
- MW libraries subject to click-thru have been already removed from this repo, but not the projects using them.
- Building these projects, whether manually or automatically via some ACI tool would yield errors.
- Particularly with daily (or nightly) builds in the frame of a CI/CD strategy, such errors would pollute the logs uselessly.

Note: If needed, the removed items can be found in the full firmware package on st.com. Please refer to the README.md file for further details.
2023-01-30 18:03:04 +01:00
Ali Labbene 7e75545c0c [DOC] Add a link to the release note into the README.md file 2022-12-22 11:46:48 +01:00
Ali Labbene 10dd0b8d90 [DOC] Update the CONTRIBUTING.md file and add a link to it into the README.md file 2022-12-22 11:43:56 +01:00
Matthijs Kooijman 9735e00c0c Fix signed vs unsigned comparison warning 2022-12-19 13:00:25 +01:00
Matthijs Kooijman 17482cea0d Add additional debug output
This adds some more details about RX and TX bytes and TX config. There
is also some code for RX config, but to minimize the impact on RX
timing, that is commented out.
2022-12-15 20:28:25 +01:00
Matthijs Kooijman 1c17e31589 Fix printf format warnings
These warnings are caused because frequencies are stored as `uint32_t`,
which is `unsigned long`, while the printf format expects `int`. In
practice, this does not actually cause problems, since on STM32 gcc
`long` and `int` are both 32-bits and frequencies are never large enough
to cause signed vs unsigned ambiguity.

Since printf has no format specifiers for e.g. uint32_t (libc does have
some macros for this, but those really hurt readability), this is tricky
to fix in a portable way (other architectures or compilers might have
`uint32_t` equal to `unsigned int` instead of `unsigned long`), this fix
just casts the frequency to `unsigned` before passing it to printf (and
for good measure, also convert the specifier from `%d` to `%u`). This
does mean this printing will break if `int` is not at least 32-bits
(e.g. on AVR), but given the scope of this library, that should be
acceptable.
2022-12-15 20:27:13 +01:00
Matthijs Kooijman 8372970ad4 Fix comments in LoRaMacCallback_t
It seems the comment for GetDevAddress was copied from GetUniqueId, but
not changend sufficiently to be correct.
2022-12-15 08:53:55 +01:00
Ali Labbene 378e461e46 Release v1.3.0 2022-12-08 15:37:52 +01:00
Ali Labbene dc0a7652a5 [DOC] Rename ./Middlewares/Third_Party/SubGHz_Phy/Release_notes.html (..._notes.html --> ..._Notes.html) (part 2) 2022-12-08 14:28:01 +01:00
Ali Labbene 9bd4b2a4c1 [DOC] Rename ./Middlewares/Third_Party/SubGHz_Phy/Release_notes.html (..._notes.html --> ..._Notes.html) (part 1) 2022-12-08 14:23:54 +01:00
Ali Labbene 7b61b4a507 [PRJ] Rename ./Projects/.../STM32CubeIDE/CM0plus directories ./Projects/.../STM32CubeIDE/CM0PLUS with capital letters (part 2) 2022-12-08 10:31:12 +01:00
Ali Labbene 9ed4dadbf0 [PRJ] Rename ./Projects/.../STM32CubeIDE/CM0plus directories ./Projects/.../STM32CubeIDE/CM0PLUS with capital letters (part 1)
NOTE: This first commit is necessary to ensure the change of letter case is well considered in environments based on case-insensitive file systems.
2022-12-08 10:29:50 +01:00
Ali Labbene 6d27fec2e5 Release v1.2.0 2022-12-07 18:38:46 +01:00
rihab kouki 59c5722dea Add missing .sh files 2021-11-16 10:52:35 +01:00
Eya 1555f88ae1 Release v1.1.0 2021-07-23 11:28:25 +01:00
Ali Labbene 747d4e27df Release v1.0.0 2020-12-18 15:30:45 +01:00
Christophe Cadoret f838fecead
Initial commit 2020-11-19 08:49:19 +01:00