From 53f27ec57448d1e03be147d86a3575a2b5dd0d33 Mon Sep 17 00:00:00 2001 From: henyxia Date: Wed, 1 Apr 2015 20:26:20 +0200 Subject: [PATCH] Debugged version --- main.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/main.c b/main.c index 3ddd5aa..db2e9e8 100644 --- a/main.c +++ b/main.c @@ -12,9 +12,9 @@ int main(void) { int ret; pthread_t tUI; - pthread_t tNFC; + //pthread_t tNFC; pthread_t tBUS; - pthread_t tHVC; + //pthread_t tHVC; initUILog(); if(!initLog()) { @@ -26,25 +26,25 @@ int main(void) displayUI(); ret = pthread_create(&tUI, NULL, drawUI, NULL); printx(DEBUG, MAIN, "UI Started ID %08x ret %d\n", tUI, ret); - printx(INFO, MAIN, "Initializing NFC"); + printx(INFO, MAIN, "Initializing NFC");/* if(!initNFC()) { printx(ERROR, MAIN, "Unable to start the NFC interface\n"); return 2; } - pthread_create(&tNFC, NULL, processNFC, NULL); + pthread_create(&tNFC, NULL, processNFC, NULL);*/ if(!initBus()) { printx(ERROR, MAIN, "Unable to start the BUS interface\n"); return 3; } - pthread_create(&tBUS, NULL, processBus, NULL); + pthread_create(&tBUS, NULL, processBus, NULL);/* if(!initHVC()) { printx(ERROR, MAIN, "Unable to start the HVC interface\n"); return 4; } - pthread_create(&tHVC, NULL, processHVC, NULL); + pthread_create(&tHVC, NULL, processHVC, NULL);*/ pthread_join(tUI, NULL); closeLog(); return 0; -- libgit2 0.21.2