반응형
Atmega128 기초 - 시리얼 통신( USART )
AVR/Atmega128 강좌2023. 10. 13. 22:28Atmega128 기초 - 시리얼 통신( USART )

Atmega128의 시리얼 통신(USART)에 대해 다룹니다. 2016. 6. 25 최초작성 1. Baud rate (in bits per second, bps)와 시스템 클록을 정의한다. #define 9600 #define F_CPU 16000000UL 2. 시스템 클록과 원하는 baud rate를 이용하여 USART Baud Rate Register(UBRR)을 계산한다. BAUD Baud rate (in bits per second, bps) fOSC System Oscillator clock frequency UBRR Contents of the UBRRH and UBRRL Registers, (0 - 4095) UBRR_VALUE = (((F_CPU / (9600 * 16UL))) - 1); ..

Arduino Uno2016. 8. 30. 08:00Arduino - 시리얼 통신으로 실수(double)를 전송하기

출처:http://sheepdogguides.com/arduino/aht2printfloat.htm 12345678910111213141516171819202122232425262728293031323334353637383940414243444546/*Program to provide and demonstrate a way to send floating point numbers to the serial stream.*/ double x;double y;double z; void printDouble( double val, unsigned int precision){/* prints val with number of decimal places determine by precision NOTE: precis..

반응형
image