Can I use Intel Galileo board without any OS installed in it? My intention is to use the Galileo board like an "Arduino Uno" board. I know that Arduino Uno uses a microcontroller and Galileo has a processor in it. But I would like to know with writing some C language program (like a firmware probably with some IDE) and if I can load that to the Galileo and control some devices like LEDs or motors. If yes please let me know how/provide some URLs where it mentioned about some toy projects without an OS on a Galileo.
Related Questions in MICROPROCESSORS
- in R, recovering strings that have been converted to factors with factor()
- How to reinstall pandoc after removing .cabal?
- How do I code a Mixed effects model for abalone growth in Aquaculture nutrition with nested individuals
- How to save t.test result in R to a txt file?
- how to call function from library in formula with R type provider
- geom_bar define border color with different fill colors
- Different outcome using model.matrix for a function in R
- Creating a combination data.table in R
- Force specific interactions in Package 'earth' in R
- Output from recursive function R
Related Questions in INTEL-GALILEO
- in R, recovering strings that have been converted to factors with factor()
- How to reinstall pandoc after removing .cabal?
- How do I code a Mixed effects model for abalone growth in Aquaculture nutrition with nested individuals
- How to save t.test result in R to a txt file?
- how to call function from library in formula with R type provider
- geom_bar define border color with different fill colors
- Different outcome using model.matrix for a function in R
- Creating a combination data.table in R
- Force specific interactions in Package 'earth' in R
- Output from recursive function R
Related Questions in SOC
- in R, recovering strings that have been converted to factors with factor()
- How to reinstall pandoc after removing .cabal?
- How do I code a Mixed effects model for abalone growth in Aquaculture nutrition with nested individuals
- How to save t.test result in R to a txt file?
- how to call function from library in formula with R type provider
- geom_bar define border color with different fill colors
- Different outcome using model.matrix for a function in R
- Creating a combination data.table in R
- Force specific interactions in Package 'earth' in R
- Output from recursive function R
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Things aren't quite as bleak as some of the other commentors are making them out.
The short answer is yes, but with alot of caveats. Writing bare metal for Galileo is a bit complex due to x86 being a somewhat complicate architecture and the SoC in Galileo isnt as straight forward as a simple STM32 or ESP32 or something like that. If you are looking for more information (all the information) on the hardware, you can find that here: https://www.intel.com/content/dam/support/us/en/documents/processors/quark/sb/329678_intelquarkcore_hwrefman_002.pdf
However, starting from that low level is probably not ideal unless you are trying to learn/want to learn how to write an OS/firmware. Its a great exercise but takes lot of effort and knowledge to get working. And in reality, for what you describe, it sounds like you want to control the system from a higher-level, but not ontop of something as complex and latency insensitive like linux. This is were you might want to take a look at a Realtime Operating System (RTOS); and there is an open source, permissive-licensed RTOS that claims to work on Galileo, Zephyr RTOS: https://www.zephyrproject.org/
Based on what you are requesting, I would work ontop of Zephyr instead of trying to reinvent the wheel and run on Galileo bare metal. If you still want to pursue that lower level, at least you can refer to the documentation on Zephyr's supported board page as well as its own source code to build up a program for the Quark X1000 on Galileo.