I understand that there's a limitation of only one Request/Response that can be issued at a time... but is that limitation PER CONNECTION? I.e., can my application do this:
GATT_ReadCharValue(connHdl_1, &readReq, taskID); Slave device #1
followed by
GATT_WriteCharValue(connHdl_2, &writeReq, taskID); Slave device #2
Can these two C-level calls be issued, basically, one right after the other?
-mark