Skip to content
Snippets Groups Projects
Commit b1b6dbee authored by DAsamhan's avatar DAsamhan
Browse files

remove unused log

parent ed627b59
1 merge request!6Implement main application
...@@ -30,7 +30,6 @@ BleScanner::BleScanner(){ ...@@ -30,7 +30,6 @@ BleScanner::BleScanner(){
} }
void BleScanner::BleInterruptHandler(struct k_work *item){ void BleScanner::BleInterruptHandler(struct k_work *item){
LOG_INF("bt handler");
if(context->registeredCallback != NULL){ if(context->registeredCallback != NULL){
context->registeredCallback(context->currAddr, context->currData, context->currRssi); context->registeredCallback(context->currAddr, context->currData, context->currRssi);
} }
...@@ -68,8 +67,5 @@ void BleScanner::BleDevicefound(const bt_addr_le_t *addr, int8_t rssi, uint8_t t ...@@ -68,8 +67,5 @@ void BleScanner::BleDevicefound(const bt_addr_le_t *addr, int8_t rssi, uint8_t t
context->currData = dataVec; context->currData = dataVec;
context->currRssi = rssi; context->currRssi = rssi;
LOG_INF("bt interrupt");
int err = k_work_submit(&context->bleWork); int err = k_work_submit(&context->bleWork);
LOG_INF("Work q error %d", err);
} }
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment