there a bug in the resistor calculation

This commit is contained in:
Wolfgang Hottgenroth
2016-09-05 20:43:00 +02:00
parent 98845f4f29
commit 94e25ea5fb
3 changed files with 6 additions and 6 deletions

View File

@ -45,14 +45,14 @@ int main() {
// testTaskInit(&testTaskHandle2, TESTPIN2);
measureInit(NULL);
displayMuxerInit(NULL);
// displayMuxerInit(NULL);
schAdd(displayExec, NULL, 0, 100);
schAdd(displayExec, NULL, 0, 10);
// schAdd(testTaskExec, &testTaskHandle1, 0, 20);
// schAdd(testTaskExec, &testTaskHandle2, 2, 20);
schAdd(measureStartConversion, NULL, 0, 1000);
schAdd(displayMuxerExec, NULL, 0, 500);
// schAdd(displayMuxerExec, NULL, 0, 500);
__enable_interrupt();

View File

@ -54,8 +54,8 @@ void measureCollectAndProcessConversion(void *handleArg) {
uint8_t temperature = (uint8_t)t;
// displaySetValue(temperature);
displayMuxerSetValue(temperature, true, TEMPERATURE_MUX);
displaySetValue(temperature);
// displayMuxerSetValue(temperature, true, TEMPERATURE_MUX);
//gpioSetPin(TESTPIN2, LOW);
}

View File

@ -6,7 +6,7 @@
*/
#include "gpio.h"
#include "TestTask.h"
#include "testTask.h"
#include "PontCoopScheduler.h"