Skip to content

Commit

Permalink
update bundles:
Browse files Browse the repository at this point in the history
* [FIX] Internal KV storage: potential memory overwritten
* [FIX] HCI: handling of `LE Remote Connection Parameter Request Reply`
  • Loading branch information
zjli2019 committed Nov 21, 2024
1 parent 1fb08f7 commit a1f24b1
Show file tree
Hide file tree
Showing 110 changed files with 5,709 additions and 5,679 deletions.
506 changes: 253 additions & 253 deletions bundles/exp/ING9168xx/apis.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions bundles/exp/ING9168xx/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
},
"rom": {
"base": 33562624,
"size": 179620
"size": 179652
},
"var": {
"link_layer_features": {
"addr": 33733648,
"addr": 33733684,
"value": "ff79ff07fe000000"
}
},
"version": [
2,
3,
43
44
]
}
Binary file modified bundles/exp/ING9168xx/platform.bin
Binary file not shown.
486 changes: 243 additions & 243 deletions bundles/exp/ING9187xx/apis.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions bundles/exp/ING9187xx/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
},
"rom": {
"base": 16384,
"size": 153444
"size": 153468
},
"var": {
"link_layer_features": {
"addr": 165184,
"addr": 165208,
"value": "3f790104fe000000"
}
},
"version": [
1,
9,
79
80
]
}
Binary file modified bundles/exp/ING9187xx/platform.bin
Binary file not shown.
496 changes: 248 additions & 248 deletions bundles/exp/ING9188xx/apis.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions bundles/exp/ING9188xx/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@
},
"rom": {
"base": 16384,
"size": 160360
"size": 160388
},
"var": {
"link_layer_features": {
"addr": 171760,
"addr": 171784,
"value": "3f79ff07fe000000"
}
},
"version": [
1,
9,
79
80
]
}
Binary file modified bundles/exp/ING9188xx/platform.bin
Binary file not shown.
3 changes: 2 additions & 1 deletion bundles/exp/inc/kv_storage.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ typedef void (*f_kv_remove)(const kvkey_t key);
* @param[in] key the key
* @param[in] data data for the key
* @param[in] len data length for the key
* @return KV_OK if created or updated, otherwise error code
*
* Note: if key does not exist, k-v pair is created; if already exists, value is updated.
*/
Expand Down Expand Up @@ -106,7 +107,7 @@ typedef void (*f_kv_value_modified_of_key)(const kvkey_t key);
* @param[in] data data for current key
* @param[in] len data length for current key
* @param[in] user_data user data
* @return KV_OK to continue visit other k-v pair, else to abor visiting
* @return KV_OK to continue visit other k-v pair, else to abort visiting
*/
typedef int (*f_kv_visitor)(const kvkey_t key, const uint8_t *data, const int16_t len, void *user_data);

Expand Down
10 changes: 6 additions & 4 deletions bundles/exp/inc/platform_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -430,10 +430,12 @@ void platform_shutdown(const uint32_t duration_cycles, const void *p_retention_d

typedef enum
{
LL_FLAG_DISABLE_CTE_PREPROCESSING = 1,
LL_FLAG_LEGACY_ONLY_INITIATING = 4,
LL_FLAG_LEGACY_ONLY_SCANNING = 8,
LL_FLAG_REDUCE_INSTANT_ERRORS = 16,
LL_FLAG_DISABLE_CTE_PREPROCESSING = 1, // disable internal CTE preprocessing
LL_FLAG_LEGACY_ONLY_INITIATING = 4, // only do initiating to legacy devices
LL_FLAG_LEGACY_ONLY_SCANNING = 8, // only do scanning for legacy devices
LL_FLAG_REDUCE_INSTANT_ERRORS = 16, // reduce report instance passed errors
LL_FLAG_DISABLE_RSSI_FILTER = 64, // disable internal RSSI filter
LL_FLAG_RSSI_AFTER_CRC =128, // only read RSSI from packages with correct CRC
} ll_cfg_flag_t;

typedef enum
Expand Down
Loading

0 comments on commit a1f24b1

Please sign in to comment.