Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2022
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.17 KB | None | 0 0
  1. Arduino: 1.8.19 (Windows 10), Board: "Proffieboard V2, Serial, SDCARD (SPI), 80 MHz, Smallest Code"
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23. In file included from C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:55:
  24.  
  25. C:\Users\karin\OneDrive\Documents\ProffieOS\config\saber.h:46:1: error: 'undefined' does not name a type
  26.  
  27. 46 | undefined
  28.  
  29. | ^~~~~~~~~
  30.  
  31. In file included from C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:563:
  32.  
  33. C:\Users\karin\OneDrive\Documents\ProffieOS\config\saber.h:46:1: error: 'undefined' does not name a type
  34.  
  35. 46 | undefined
  36.  
  37. | ^~~~~~~~~
  38.  
  39. In file included from C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:537:
  40.  
  41. C:\Users\karin\OneDrive\Documents\ProffieOS\config\saber.h:180:17: error: 'presets' was not declared in this scope; did you mean 'Preset'?
  42.  
  43. 180 | , CONFIGARRAY(presets) },
  44.  
  45. | ^~~~~~~
  46.  
  47. C:\Users\karin\OneDrive\Documents\ProffieOS\common\preset.h:6:24: note: in definition of macro 'CONFIGARRAY'
  48.  
  49. 6 | #define CONFIGARRAY(X) X, NELEM(X)
  50.  
  51. | ^
  52.  
  53. C:\Users\karin\OneDrive\Documents\ProffieOS\config\saber.h:180:17: error: 'presets' was not declared in this scope; did you mean 'Preset'?
  54.  
  55. 180 | , CONFIGARRAY(presets) },
  56.  
  57. | ^~~~~~~
  58.  
  59. C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:299:26: note: in definition of macro 'NELEM'
  60.  
  61. 299 | #define NELEM(X) (sizeof(X)/sizeof((X)[0]))
  62.  
  63. | ^
  64.  
  65. C:\Users\karin\OneDrive\Documents\ProffieOS\config\saber.h:180:5: note: in expansion of macro 'CONFIGARRAY'
  66.  
  67. 180 | , CONFIGARRAY(presets) },
  68.  
  69. | ^~~~~~~~~~~
  70.  
  71. C:\Users\karin\OneDrive\Documents\ProffieOS\config\saber.h:180:17: error: 'presets' was not declared in this scope; did you mean 'Preset'?
  72.  
  73. 180 | , CONFIGARRAY(presets) },
  74.  
  75. | ^~~~~~~
  76.  
  77. C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:299:37: note: in definition of macro 'NELEM'
  78.  
  79. 299 | #define NELEM(X) (sizeof(X)/sizeof((X)[0]))
  80.  
  81. | ^
  82.  
  83. C:\Users\karin\OneDrive\Documents\ProffieOS\config\saber.h:180:5: note: in expansion of macro 'CONFIGARRAY'
  84.  
  85. 180 | , CONFIGARRAY(presets) },
  86.  
  87. | ^~~~~~~~~~~
  88.  
  89. In file included from C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:567:
  90.  
  91. C:\Users\karin\OneDrive\Documents\ProffieOS\config\saber.h:46:1: error: 'undefined' does not name a type
  92.  
  93. 46 | undefined
  94.  
  95. | ^~~~~~~~~
  96.  
  97. In file included from C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:598:
  98.  
  99. C:\Users\karin\OneDrive\Documents\ProffieOS\buttons\latching_button.h: In member function 'void LatchingButtonTemplate<BASE>::Loop()':
  100.  
  101. C:\Users\karin\OneDrive\Documents\ProffieOS\buttons\latching_button.h:33:7: error: 'prop' was not declared in this scope
  102.  
  103. 33 | prop.Event(button_, EVENT_LATCH_ON);
  104.  
  105. | ^~~~
  106.  
  107. C:\Users\karin\OneDrive\Documents\ProffieOS\buttons\latching_button.h: In member function 'bool LatchingButtonTemplate<BASE>::Parse(const char*, const char*)':
  108.  
  109. C:\Users\karin\OneDrive\Documents\ProffieOS\buttons\latching_button.h:43:9: error: 'prop' was not declared in this scope
  110.  
  111. 43 | prop.Event(button_, EVENT_LATCH_ON);
  112.  
  113. | ^~~~
  114.  
  115. C:\Users\karin\OneDrive\Documents\ProffieOS\buttons\latching_button.h:45:9: error: 'prop' was not declared in this scope
  116.  
  117. 45 | prop.Event(button_, EVENT_LATCH_OFF);
  118.  
  119. | ^~~~
  120.  
  121. In file included from C:\Users\karin\OneDrive\Documents\ProffieOS\buttons\button.h:4,
  122.  
  123. from C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:599:
  124.  
  125. C:\Users\karin\OneDrive\Documents\ProffieOS\buttons\button_base.h: In member function 'bool ButtonBase::Send(uint32_t)':
  126.  
  127. C:\Users\karin\OneDrive\Documents\ProffieOS\buttons\button_base.h:51:10: error: 'prop' was not declared in this scope
  128.  
  129. 51 | if (!prop.Event(button_, (EVENT)(event + (EVENT_SECOND_PRESSED - EVENT_FIRST_PRESSED) * press_count_))) {
  130.  
  131. | ^~~~
  132.  
  133. In file included from C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:605:
  134.  
  135. C:\Users\karin\OneDrive\Documents\ProffieOS\buttons\rotary.h: In member function 'virtual void ChangePresetRotaryReceiver::Update(int)':
  136.  
  137. C:\Users\karin\OneDrive\Documents\ProffieOS\buttons\rotary.h:12:21: error: 'prop' was not declared in this scope
  138.  
  139. 12 | if (delta == 1) prop.next_preset();
  140.  
  141. | ^~~~
  142.  
  143. C:\Users\karin\OneDrive\Documents\ProffieOS\buttons\rotary.h:13:22: error: 'prop' was not declared in this scope
  144.  
  145. 13 | if (delta == -1) prop.previous_preset();
  146.  
  147. | ^~~~
  148.  
  149. In file included from C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:629:
  150.  
  151. C:\Users\karin\OneDrive\Documents\ProffieOS\config\saber.h: At global scope:
  152.  
  153. C:\Users\karin\OneDrive\Documents\ProffieOS\config\saber.h:46:1: error: 'undefined' does not name a type
  154.  
  155. 46 | undefined
  156.  
  157. | ^~~~~~~~~
  158.  
  159. In file included from C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:1382:
  160.  
  161. C:\Users\karin\OneDrive\Documents\ProffieOS\motion\mpu6050.h: In member function 'virtual void MPU6050::Loop()':
  162.  
  163. C:\Users\karin\OneDrive\Documents\ProffieOS\motion\mpu6050.h:243:13: error: 'prop' was not declared in this scope
  164.  
  165. 243 | prop.DoAccel(
  166.  
  167. | ^~~~
  168.  
  169. C:\Users\karin\OneDrive\Documents\ProffieOS\motion\mpu6050.h:251:13: error: 'prop' was not declared in this scope
  170.  
  171. 251 | prop.DoMotion(
  172.  
  173. | ^~~~
  174.  
  175. In file included from C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:1383:
  176.  
  177. C:\Users\karin\OneDrive\Documents\ProffieOS\motion\lsm6ds3h.h: In member function 'void LSM6DS3H::DataReceived2()':
  178.  
  179. C:\Users\karin\OneDrive\Documents\ProffieOS\motion\lsm6ds3h.h:297:5: error: 'prop' was not declared in this scope
  180.  
  181. 297 | prop.DoAccel(MotionUtil::FromData(databuffer + 6, 16.0 / 32768.0, // 16 g range
  182.  
  183. | ^~~~
  184.  
  185. In file included from C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:1384:
  186.  
  187. C:\Users\karin\OneDrive\Documents\ProffieOS\motion\fxos8700.h: In member function 'virtual void FXOS8700::Loop()':
  188.  
  189. C:\Users\karin\OneDrive\Documents\ProffieOS\motion\fxos8700.h:169:6: error: 'prop' was not declared in this scope
  190.  
  191. 169 | prop.DoAccel(
  192.  
  193. | ^~~~
  194.  
  195. In file included from C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:1385:
  196.  
  197. C:\Users\karin\OneDrive\Documents\ProffieOS\motion\fxas21002.h: In member function 'virtual void FXAS21002::Loop()':
  198.  
  199. C:\Users\karin\OneDrive\Documents\ProffieOS\motion\fxas21002.h:72:6: error: 'prop' was not declared in this scope
  200.  
  201. 72 | prop.DoMotion(MotionUtil::FromData(databuffer,
  202.  
  203. | ^~~~
  204.  
  205. In file included from C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:1405:
  206.  
  207. C:\Users\karin\OneDrive\Documents\ProffieOS\common\booster.h: In member function 'bool Booster::Active()':
  208.  
  209. C:\Users\karin\OneDrive\Documents\ProffieOS\common\booster.h:20:9: error: 'prop' was not declared in this scope
  210.  
  211. 20 | if (prop.NeedsPower()) return true;
  212.  
  213. | ^~~~
  214.  
  215. C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino: In function 'void setup()':
  216.  
  217. ProffieOS:1486:3: error: 'prop' was not declared in this scope
  218.  
  219. 1486 | prop.FindBlade();
  220.  
  221. | ^~~~
  222.  
  223. In file included from C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:1518:
  224.  
  225. C:\Users\karin\OneDrive\Documents\ProffieOS\common\clock_control.h: In member function 'virtual void ClockControl::Loop()':
  226.  
  227. C:\Users\karin\OneDrive\Documents\ProffieOS\common\clock_control.h:17:5: error: 'prop' was not declared in this scope
  228.  
  229. 17 | || prop.NeedsPower()
  230.  
  231. | ^~~~
  232.  
  233. In file included from C:\Users\karin\OneDrive\Documents\ProffieOS\ProffieOS.ino:1528:
  234.  
  235. C:\Users\karin\OneDrive\Documents\ProffieOS\config\saber.h: At global scope:
  236.  
  237. C:\Users\karin\OneDrive\Documents\ProffieOS\config\saber.h:46:1: error: 'undefined' does not name a type
  238.  
  239. 46 | undefined
  240.  
  241. | ^~~~~~~~~
  242.  
  243. exit status 1
  244.  
  245. 'prop' was not declared in this scope
  246.  
  247.  
  248.  
  249. This report would have more information with
  250. "Show verbose output during compilation"
  251. option enabled in File -> Preferences.
  252.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement