You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
# Version 1.5.0-rc.3 Release Notes
2
+
3
+
Fixed a critical bug where the firmware could never connect to LCG, and addressed code correctness issues (variable initialization and type casting) along with compiler warning cleanups.
4
+
1
5
# Version 1.5.0-rc.2 Release Notes
2
6
3
7
This release candidate focuses on **E-Stop reliability**, **rate limiting behavior**, and **general internal cleanup and correctness improvements**.
board = az-delivery-devkit-v4 ; Overridden per board
14
14
framework = arduino
15
15
16
-
; Most warnings here are commented out because the compiler detects warnings outside own code, if we can disable external files for warnings that would be amazing!
17
16
build_flags =
18
17
-std=c++2a
19
18
-std=gnu++2a
19
+
-fno-exceptions
20
+
-DCONFIG_ASYNC_TCP_QUEUE_SIZE=256
21
+
build_unflags =
22
+
-std=gnu++11
23
+
24
+
; Most warnings here are commented out because the compiler detects warnings outside own code, build_src_flags is meant to only be for our code but doesnt seem to work in this instance...
0 commit comments