InterviewSolution
Saved Bookmarks
| 1. |
Where does the Arduino IDE search if it needs to find out the Name of a type of Arduino Board?(a) build.txt(b) boards.txt(c) build.core(d) Arduino.hThe question was posed to me in an online quiz.The query is from Compilation in division Arduino Programming of Arduino |
|
Answer» CORRECT choice is (b) BOARDS.txt To elaborate: The different types of Arduino Boards which are also commonly REFERRED to as “VARIANTS” are present in the boards.txt file. This is a particularly important file because it contains the different configuration information for different Arduino Boards like which compiler toolchain to execute on a PARTICULAR variant. |
|