feat(unity): upgrade to 2.6.0-RC1

This commit is contained in:
Ivan Grokhotkov
2023-11-27 14:21:49 +01:00
parent 4b0da52aa8
commit 88fa79fcc7
13 changed files with 78 additions and 16 deletions

View File

@@ -6,4 +6,19 @@ System
Power Management
-----------------------
* ``esp_sleep_enable_ext1_wakeup_with_level_mask`` is deprecated, use ``esp_sleep_enable_ext1_wakeup_io`` and ``esp_sleep_disable_ext1_wakeup_io`` instead.
* ``esp_sleep_enable_ext1_wakeup_with_level_mask`` is deprecated, use :cpp:func:`esp_sleep_enable_ext1_wakeup_io` and :cpp:func:`esp_sleep_disable_ext1_wakeup_io` instead.
Unit Testing
-----------------------
In the past versions of Unity framework, it was possible to omit a semicolon at the end of a ``TEST_ASSERT_*`` macro statement. This is no longer the case in the newer version of Unity, used in IDF v5.3.
For example, the following code:
.. code-block:: c
TEST_ASSERT(some_func() == ESP_OK)
will now result in a compilation error. To fix this, add a semicolon at the end of the statement:
TEST_ASSERT(some_func() == ESP_OK);