• Help for a beginner
    Can someone pleae tell me how to write a medium size code systematically?? for example, I have one .c file for LCD, another .c file for keyboard, another .c file for ADC reading. main() is written as...
  • Gifted 8051, need beginner advice
    Hello: An engineer friend of mine gifted me a Silicon Labs 8051 dev kit, model# C8051F930DK and from the datasheet and the included Keil compiler it looks to be a very promising kit however there...
  • a beginner needs help
    dear friends I am beginner with ARM and I need some help to start. I collect STM32F103VB for my project which uses USB Device,SPI,USART and GPIO's, I read most of documents and design my own hardware...
  • beginner
    hi, i just tried out the trial software and i'm stuck. i guess my first question is how do i run a program? i can't find the button anywhere and i was wondering if this was a valid command: ...
  • a beginner, wants to do echoing program
    #include <stdio.h> #include <reg51.h> unsigned char a[20]; void main(void) { SCON = 0x52; TMOD = 0x20; TCON = 0x40; TH1 = 0xf3; printf("enter any sentence:"); _gets(a,20); _puts(a); }...