Most voted "8bit-microcontrollers" questions
Microcontrollers are computers on a single chip, thus encapsulating the minimum resources to perform the tasks assigned to them, 8-bit microcontrollers are empowered with a processor, an 8-bit arithmetic logic unit, and thus handle 1 byte at a time.
Learn more…2 questions
Sort by count of
-
3
votes1
answer1067
viewsHow to Calculate CRC Modbus RTU
I’m trying to calculate a crc Modbus in an application for PIC, but the returned crc is always incorrect compared to online simulators. follows the code void CRC (unsigned char* msg, unsigned char*…
-
0
votes1
answer176
viewsIt is better to use common division or Shift and Soma operations on 8bit microcontrollers
Considering programming for 8bit microcontrollers, we know that even for this microcontroller, the compilers have reached a unique level of optimization that allows us to program focused only on the…