Skip to content

Commit

Permalink
Merge pull request #283 from ingchips/develop
Browse files Browse the repository at this point in the history
release 8.4.20
  • Loading branch information
zjli-2019 authored Dec 2, 2024
2 parents f0fa868 + 6ae6d48 commit 5e23372
Show file tree
Hide file tree
Showing 222 changed files with 6,362 additions and 6,032 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": 179576
"size": 179664
},
"var": {
"link_layer_features": {
"addr": 33733604,
"addr": 33733692,
"value": "ff79ff07fe000000"
}
},
"version": [
2,
3,
41
45
]
}
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": 153384
"size": 153480
},
"var": {
"link_layer_features": {
"addr": 165124,
"addr": 165216,
"value": "3f790104fe000000"
}
},
"version": [
1,
9,
77
81
]
}
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": 160312
"size": 160396
},
"var": {
"link_layer_features": {
"addr": 171712,
"addr": 171792,
"value": "3f79ff07fe000000"
}
},
"version": [
1,
9,
77
81
]
}
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
2 changes: 1 addition & 1 deletion bundles/exp/inc/ll_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ int ll_ackable_packet_run(struct ll_raw_packet *packet,
*
* Possible Usages:
*
* 1. Scan fro Adv on a single channel;
* 1. Scan for Adv on a single channel;
*
* 1. Receive Connection packages from both roles.
*
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 5e23372

Please sign in to comment.