Does Bob have an Embedded page?
-
Hi All, Do we have an Embedded page or shall I ask in C/C++ forum..? Glenn.
-
Hi All, Do we have an Embedded page or shall I ask in C/C++ forum..? Glenn.
-
Maybe this is what you are looking for: CodeProject Stuff[^]
I think the question is about where to post a question about embedded systems... :sigh:
"If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization." ― Gerald Weinberg
-
Maybe this is what you are looking for: CodeProject Stuff[^]
Richard, Richard. I don't think I've seen you troll anyone before. :-D
Robust Services Core | Software Techniques for Lemmings | Articles
The fox knows many things, but the hedgehog knows one big thing. -
Hi All, Do we have an Embedded page or shall I ask in C/C++ forum..? Glenn.
If it is more about the hardware part - you should go here: https://www.codeproject.com/Forums/186301/Hardware-Devices Otherwise go with the programming language you use...
"If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization." ― Gerald Weinberg
-
Maybe this is what you are looking for: CodeProject Stuff[^]
Ok I deserved that.
-
I think the question is about where to post a question about embedded systems... :sigh:
"If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization." ― Gerald Weinberg
Well in all fairness I need to ask a question on C programming to make sure I am not missing something. I was in the middle of writing a document (not related) and thought :bob: might know. So in all fairness I deserved the trolling.
-
Richard, Richard. I don't think I've seen you troll anyone before. :-D
Robust Services Core | Software Techniques for Lemmings | Articles
The fox knows many things, but the hedgehog knows one big thing. -
Ok I deserved that.
-
Hi All, Do we have an Embedded page or shall I ask in C/C++ forum..? Glenn.
Try pinging honey the codewitch directly, probability is she'd be the only one to answer anyway :D
GCS/GE d--(d) s-/+ a C+++ U+++ P-- L+@ E-- W+++ N+ o+ K- w+++ O? M-- V? PS+ PE Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++* Weapons extension: ma- k++ F+2 X
-
Well, pardon me for trying. The title of the question led me to believe that Glenn is looking to embed a pictire of Bob somewhere.
He did wonder if should post in the C/C++ forum, hence my conclusion.
Robust Services Core | Software Techniques for Lemmings | Articles
The fox knows many things, but the hedgehog knows one big thing. -
He did wonder if should post in the C/C++ forum, hence my conclusion.
Robust Services Core | Software Techniques for Lemmings | Articles
The fox knows many things, but the hedgehog knows one big thing. -
Nope, I know our little Green friend! I remember see stuffed Bob's somewhere... has he been licensed?
-
If it is more about the hardware part - you should go here: https://www.codeproject.com/Forums/186301/Hardware-Devices Otherwise go with the programming language you use...
"If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilization." ― Gerald Weinberg
Nope, solved it myself, posted the question and face palm came up with a solution...
-
Try pinging honey the codewitch directly, probability is she'd be the only one to answer anyway :D
GCS/GE d--(d) s-/+ a C+++ U+++ P-- L+@ E-- W+++ N+ o+ K- w+++ O? M-- V? PS+ PE Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++* Weapons extension: ma- k++ F+2 X
I fixed it, wrote the question though about it and solved it about two seconds after I posted it, tried it, Working all is good!
-
Well in all fairness I need to ask a question on C programming to make sure I am not missing something. I was in the middle of writing a document (not related) and thought :bob: might know. So in all fairness I deserved the trolling.
I do IoT stuff, which is related and similar, and am diving into more embedded here. For my part, I just ask C questions in the C section, whether it's embedded or not. What's harder is asking about the things where the hardware and firmware meet, but typically I'll just consider that a programming question, tag it as best I can, and then make sure I'm clear about what I'm doing in the description. There are enough embedded devs here I think you'll be able to cast a net and get something that way.
To err is human. Fortune favors the monsters.
-
Hi All, Do we have an Embedded page or shall I ask in C/C++ forum..? Glenn.
Anyway, MS is coming out with a G5 ARM Surface Go; and VS can generate ARM code ...
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
-
Anyway, MS is coming out with a G5 ARM Surface Go; and VS can generate ARM code ...
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
-
I do IoT stuff, which is related and similar, and am diving into more embedded here. For my part, I just ask C questions in the C section, whether it's embedded or not. What's harder is asking about the things where the hardware and firmware meet, but typically I'll just consider that a programming question, tag it as best I can, and then make sure I'm clear about what I'm doing in the description. There are enough embedded devs here I think you'll be able to cast a net and get something that way.
To err is human. Fortune favors the monsters.
Not to worry I solved the original problem and as is the case meant something else broke, bodged that. Now being left over night to see what breaks next... The LCD driver is a pain yes, you can send it an integer or float but will display a decimal point? Some times yes some times no, and will it return I2C address? (so I can hook up a real time clock that use I2C) No is the answer. Shall I try to get the data sheet, oh company went bust and some genius bought a load of LCD's on Ebay... :rolleyes: Circuit diagrams, who needs those! Glenn (I need :beer:)
-
Not to worry I solved the original problem and as is the case meant something else broke, bodged that. Now being left over night to see what breaks next... The LCD driver is a pain yes, you can send it an integer or float but will display a decimal point? Some times yes some times no, and will it return I2C address? (so I can hook up a real time clock that use I2C) No is the answer. Shall I try to get the data sheet, oh company went bust and some genius bought a load of LCD's on Ebay... :rolleyes: Circuit diagrams, who needs those! Glenn (I need :beer:)
You're probably using a crappy graphics driver. I have one that may work better for you depending on the type of MCU you're using, but your best bet is to actually use sprintf(tmp,"formatspecifier",value); and then display tmp so you have total control over the formatting of it.
To err is human. Fortune favors the monsters.