You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by GitBox <gi...@apache.org> on 2022/03/22 21:21:37 UTC

[GitHub] [mynewt-nimble] rymanluk commented on a change in pull request #1196: nimble/ll: Add support for iso broadcasting (BIG)

rymanluk commented on a change in pull request #1196:
URL: https://github.com/apache/mynewt-nimble/pull/1196#discussion_r832631533



##########
File path: nimble/controller/include/controller/ble_phy.h
##########
@@ -65,6 +65,7 @@ struct os_mbuf;
 #define BLE_PHY_TRANSITION_NONE     (0)
 #define BLE_PHY_TRANSITION_RX_TX    (1)
 #define BLE_PHY_TRANSITION_TX_RX    (2)
+#define BLE_PHY_TRANSITION_TX_TX    (3)

Review comment:
       soon RX_RX will be needed :)

##########
File path: nimble/controller/include/controller/ble_ll_utils.h
##########
@@ -19,6 +19,11 @@
 
 #include <stdint.h>
 
+#define MIN(_a, _b) ((_a) < (_b) ? (_a) : (_b))
+#define MAX(_a, _b) ((_a) < (_b) ? (_a) : (_b))

Review comment:
       MAX does same thing as MIN




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org