TOP Contributors

  1. MIKROE (2784 codes)
  2. Alcides Ramos (403 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (130 codes)
  5. Bugz Bensce (97 codes)
  6. S P (73 codes)
  7. dany (71 codes)
  8. MikroBUS.NET Team (35 codes)
  9. NART SCHINACKOW (34 codes)
  10. Armstrong Subero (27 codes)

Most Downloaded

  1. Timer Calculator (140895 times)
  2. FAT32 Library (73483 times)
  3. Network Ethernet Library (58269 times)
  4. USB Device Library (48468 times)
  5. Network WiFi Library (44077 times)
  6. FT800 Library (43632 times)
  7. GSM click (30522 times)
  8. mikroSDK (29252 times)
  9. PID Library (27196 times)
  10. microSD click (26907 times)
Libstock prefers package manager

Package Manager

We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]

< Back
Library

simple interrupt driven USART library.

Rating:

0

Author: Do-wan Kim

Last Updated: 2012-01-17

Package Version: 1.0.0.0

Category: Communication

Downloaded: 1600 times

Followed by: 1 user

License: MIT license  

Simple interrupt driven RX/TX USART library.

It's working on PIC16F627.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "simple interrupt driven USART library." changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "simple interrupt driven USART library." changes.

Do you want to report abuse regarding "simple interrupt driven USART library.".

  • Information
  • Comments (0)
DOWNLOAD LINK RELATED COMPILER CONTAINS
mikroPascal PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc

Library Blog

usage)
1. insert isr routine to interrupt procedure.
2. call initialize procedure after USART1_init(...).
3. set Global Interrupt enable bit.

note) You must save FSR at Interrupt routine. Mikro Compiler don't generate FSR register save/restore codes in Interrupt routine.

...
procedure Interrupt;
begin
   __tempfsr:=FSR;

   UART1I_RX_ISR;
   UART1I_TX_ISR;

   FSR:=__tempfsr;
end;
...
 UART1_init(9600);
 Delay_100ms;
 UART1I_init;
...
 GIE_bit:=1;
...


copy & paste codes in user main source. it's more small space than using unit source.

sorry, my English is not well.


RELATED CODES

Multiple Slave I2C

0

A temperature sensor (DS1621), Real Time Clock (DS1307), and a Port Expander (MCP23017) are connected to and controlled from a common I2C bus. The output is via an LCD connected to the Port Expander.

[Learn More]

Philips RC-5 (Manchester Code) IR Remote Decoder with AT89S51

0

Philips RC-5 (Manchester Code) IR Remote Decoder with AT89S51. https://www.youtube.com/watch?v=Y3ZZFgb_EY4

[Learn More]

Nordic nRF24L01 communication PIC with Arduino

0

Para mis camaradas que hablan español, les dejo un ejemplo de como comunicar cualquier modelo de PIC con Arduino con los tranceptores nRF24l01. La conexión es bidireccional se envía información tanto del PIC al Arduino y vicebersa

[Learn More]