Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
card10
firmware
Commits
c9719c70
Commit
c9719c70
authored
Oct 01, 2021
by
Rahix
Browse files
Merge 'Forward connection open if there a no services to discover'
Closes
#238
See merge request
!489
parents
a6be367f
388227e5
Pipeline
#5307
passed with stages
in 1 minute
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
epicardium/ble/ble_attc.c
View file @
c9719c70
...
...
@@ -264,6 +264,7 @@ void bleDiscCback(dmConnId_t connId, uint8_t status)
case
APP_DISC_CFG_CONN_START
:
/* no connection setup configuration for this application */
ble_epic_disc_cfg_complete
();
break
;
default:
...
...
epicardium/ble/ble_main.c
View file @
c9719c70
...
...
@@ -737,10 +737,12 @@ static void BleHandler(wsfEventMask_t event, wsfMsgHdr_t *pMsg)
/* process security-related messages */
AppSlaveSecProcDmMsg
((
dmEvt_t
*
)
pMsg
);
/* Needs to be before AppDiscProcDmMsg, to get DM_CONN_OPEN_IND first */
ble_epic_dm_api_event
((
dmEvt_t
*
)
pMsg
);
/* process discovery-related messages */
AppDiscProcDmMsg
((
dmEvt_t
*
)
pMsg
);
ble_epic_dm_api_event
((
dmEvt_t
*
)
pMsg
);
}
else
if
(
pMsg
->
event
>=
ATT_CBACK_START
&&
pMsg
->
event
<=
ATT_CBACK_END
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment