ankiterect
Newbie level 4
- Joined
- Nov 16, 2013
- Messages
- 6
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1
- Activity points
- 41
can anyone tell me that why my circuit not giving correct output.
my proteus circuit
my virtual terminal output
my mikro c code
my proteus circuit
my virtual terminal output
my mikro c code
Code C - [expand] 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 void newline() { UART1_Write(13); // Carriage Return UART1_Write(10); // Line Feed } void main() { do { UART1_Init(9600); // Initialize UART module at 9600 bps Delay_ms(100); // Wait for UART module to stabiliz UART1_Write_Text("hello"); newline(); Delay_ms(100); } while(1); }
Last edited by a moderator: