Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Microprocessors vs Microcontrollers
- The main difference between Microprocessors and Microcontrollers: Peripherals
- 1
- The most common microcontroller peripherals are:
- Timers
- Analog to Digital Converter (convetorul de la semnal analog adica la 0 si 1 la digital)
- Digital to Analog Converter (convetorul de la semnal digital la analog adica la 0 si 1)
- Serial Communication (SPI, I2C, and UART) (comunicarea seriala)
- General Purpose Input/Output registers (registri de intrare si iesire)
- Memory (FLASH, SRAM, EEPROM)
- Pulse Width Modulation(PWM)
- 2
- EEPROM (sau E2PROM), denumire provenită de la Electrically Erasable Programmable Read-Only Memory, este un tip de memorie nevolatilă folosită în calculatoare și alte echipamente electronice pentru a stoca date ce trebuie să persiste și după întreruperea alimentării cu curent, de ex. datele de configurare pentru un ruter sau switch. Cea mai importantă caracteristică a acestei memorii este că nu e volatilă. Când este necesar un spațiu mai mare de stocare (întâlnit la stick-urile USB), se folosește din motive
- Global Varabiles - RAM
- Local(function) variabile - RAM
- Code Instruction - FLASH pot fi stocate si in EEPROM
- Const defined data - RAM
- 6
- The main difference between interrupt and polling is that in interrupt, the device notifies the CPU that it requires attention while, in polling, the CPU continuously checks the status of the devices to find whether they require attention. In brief, an interrupt is asynchronous whereas polling is synchronous.
- 7
- An interrupt service routine (ISR) is a software routine that hardware invokes in response to an interrupt. ISR examines an interrupt and determines how to handle it executes the handling, and then returns a logical interrupt value. If no further handling is required the ISR notifies the kernel with a return value.
Advertisement
Add Comment
Please, Sign In to add comment