Advertisement
Diego_Frenoux

Open EFI v1.35 errores parte 1/? :V

Oct 28th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. Arduino: 1.8.4 (Windows 10), Board: "Arduino Due (Programming Port)"
  2.  
  3. C:\Users\FDS\Documents\Arduino\openhgre\openhgre.ino: In function 'void HILO_1()':
  4.  
  5. openhgre:139: error: cannot convert 'float (*)()' to 'float' for argument '1' to 'int AVC_E(float)'
  6.  
  7. AVC = AVC_E(temp);
  8.  
  9. ^
  10.  
  11. C:\Users\FDS\Documents\Arduino\openhgre\openhgre.ino: In function 'int AVC_E(float)':
  12.  
  13. openhgre:215: error: void value not ignored as it ought to be
  14.  
  15. return avanceEnArranque();
  16.  
  17. ^
  18.  
  19. C:\Users\FDS\Documents\Arduino\openhgre\openhgre.ino: In function 'void avanceEnArranque()':
  20.  
  21. openhgre:226: error: 'avanceDeChispa' was not declared in this scope
  22.  
  23. int avanceAnterior = avanceDeChispa;
  24.  
  25. ^
  26.  
  27. openhgre:227: error: 'dientes' was not declared in this scope
  28.  
  29. int avc2 = dientes(3);
  30.  
  31. ^
  32.  
  33. openhgre:228: error: return-statement with a value, in function returning 'void' [-fpermissive]
  34.  
  35. return avc2;
  36.  
  37. ^
  38.  
  39. openhgre:232: error: 'LCD' was not declared in this scope
  40.  
  41. LCD(2,avanceDeChispa,0);
  42.  
  43. ^
  44.  
  45. C:\Users\FDS\Documents\Arduino\openhgre\openhgre.ino: In function 'int avanceEnNormal(float)':
  46.  
  47. openhgre:257: error: 'avanceAnterior' was not declared in this scope
  48.  
  49. avanceAnterior = avanceDeChispa;
  50.  
  51. ^
  52.  
  53. openhgre:257: error: 'avanceDeChispa' was not declared in this scope
  54.  
  55. avanceAnterior = avanceDeChispa;
  56.  
  57. ^
  58.  
  59. openhgre:259: error: 'tablaAvance' was not declared in this scope
  60.  
  61. int avc2 = dientes(tablaAvance[indiceRPM][indiceTemp]);
  62.  
  63. ^
  64.  
  65. openhgre:259: error: 'dientes' was not declared in this scope
  66.  
  67. int avc2 = dientes(tablaAvance[indiceRPM][indiceTemp]);
  68.  
  69. ^
  70.  
  71. exit status 1
  72. cannot convert 'float (*)()' to 'float' for argument '1' to 'int AVC_E(float)'
  73.  
  74. This report would have more information with
  75. "Show verbose output during compilation"
  76. option enabled in File -> Preferences.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement