Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I'm not sure on this but i dont think that pics have strings.ptewright said:If I have a few inputs from let's say PortA, and I want to concatenate those bits into an 8-bit variable(string or integer) of some sort, how can I do that??? I'm programming in C, but if you know how to do it in asm, that would be fine too... thanks
ptewright said:If I have a few inputs from let's say PortA, and I want to concatenate those bits into an 8-bit variable(string or integer) of some sort, how can I do that??? I'm programming in C, but if you know how to do it in asm, that would be fine too... thanks
movf PortA, w
movwf Variable
ptewright said:If I have a few inputs from let's say PortA, and I want to concatenate those bits into an 8-bit variable(string or integer) of some sort, how can I do that??? I'm programming in C, but if you know how to do it in asm, that would be fine too... thanks