-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(Examples): Change Project.md feature for MAX32655, MAX32665, and MAX32690 #1055
Conversation
…ction logic to match full adv name in project.mk
…ction logic to match full adv name in project.mk
Delete commented previous code
Delete commented previous code
Delete commented previous code
Can you add the advertising names update to otas and otac as well? |
Done! I also synced these updates to ME17. Since I don't have the board for ME17, I didn't test it, but I think it should be good. Just copy and paste for these same updates. |
/clang-format-run |
|
||
|
||
### CONFIGURE security | ||
# /*! Authentication and bonding flags */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Delete these commented out configs
@@ -570,11 +570,14 @@ static void datcScanReport(dmEvt_t *pMsg) | |||
if (!connect && ((pData = DmFindAdType(DM_ADV_TYPE_LOCAL_NAME, pMsg->scanReport.len, | |||
pMsg->scanReport.pData)) != NULL)) { | |||
/* check length and device name */ | |||
if (pData[DM_AD_LEN_IDX] >= 4 && (pData[DM_AD_DATA_IDX] == 'D') && | |||
char advName[] = ADV_NAME; | |||
/*if (pData[DM_AD_LEN_IDX] >= 4 && (pData[DM_AD_DATA_IDX] == 'D') && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Delete commented out code
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you update the variable to be overwritten via the command line when make is called?
Believe this will work.
ADV_NAME?=DATS
PROJ_CFLAGS += -DADV_NAME=\"$(ADV_NAME)\"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done! My branch diverges somehow. I fix it and hopefully it is clean.
Merged |
Description