Advertisement
dusanrs

z1

Jun 9th, 2022
379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #include<arduinoPlatform.h>
  2. #include<tasks.h>
  3. #include<interrupts.h>
  4. #include<stdio.h>
  5. #include<serial.h>
  6. #include<pwm.h>
  7. #include<data.h>
  8.  
  9. extern serial Serial;
  10. int suma=0;
  11.  
  12. void proveri(int a,void *b){
  13.     if(available()){ // proveri da li ima ucitanih podataka
  14.  
  15.         char *podatak=read();
  16.  
  17.         int pristili_podatak=atoi(podatak+21); // zato sto od 21. karaktera krece broj
  18.         Serial.print("Ucitani podatak: ");
  19.         Serial.println(pristili_podatak);
  20.         suma+=pristili_podatak;
  21.         Serial.print("Suma pristiglih podataka: ");
  22.         Serial.println(suma);
  23.  
  24.         delete[] podatak; // da ne dodje do curenja memorije
  25.     }
  26.  
  27.  
  28.  
  29. }
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37. void setup()
  38. {
  39.     Serial.begin(9600);
  40.     startStopDataGeneration(START_GENERATION,RANDOM,0,100,0.2,500);
  41.     createTask(proveri,50,TASK_ENABLE,NULL);
  42. }
  43.  
  44.  void loop()
  45.  {
  46.  
  47.  }
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement