Search found 45 matches

by okoman
04 Dec 2012 22:20
Forum: mikroBasic PRO for PIC General
Topic: CANread with interrupt
Replies: 1
Views: 1045

Re: CANread with interrupt

solved when added this code at interrupt setup :)

Code: Select all

    INTCON.PEIE=1
    INTCON.GIE=1
by okoman
04 Dec 2012 21:33
Forum: mikroBasic PRO for PIC General
Topic: CANread with interrupt
Replies: 1
Views: 1045

CANread with interrupt

hi, i need interrupt example for canread. this is my interrupt setup PIR3=0 'clear can int flags IPR3=%11111111 'int high PIE3=%00000011 'enable rxb0 rxb1 this is intrrupt sub procedure interrupt if (PIR3.0=1) or (PIR3.1=1)then zr = CANRead(rxi_id, rxi_dataa, rxi_lenn, rxi_crflags) if zr<>0 then ' s...
by okoman
17 Nov 2011 13:18
Forum: mikroBasic PRO for PIC General
Topic: Use INT RC @ 250KHz is possible?
Replies: 6
Views: 2054

Re: Use INT RC @ 250KHz is possible?

did you checked cpu's datasheet
by okoman
25 Dec 2008 00:26
Forum: mikroBasic General
Topic: Implementation of Constant Array with Strings Elements
Replies: 22
Views: 10586

Code: Select all

'replace to
'USART_Write_Text(No[i][2])  
USART_Write_Text(No[i]) 
by okoman
24 Dec 2008 16:29
Forum: mikroBasic General
Topic: Implementation of Constant Array with Strings Elements
Replies: 22
Views: 10586

Code: Select all

const numstr  string[10][5]=(
"one  ","two  ","three","four ","five ",
"six  ","seven","eight","nine ","ten  "
)

mystr=numstr[3]

by okoman
09 Oct 2008 18:51
Forum: mikroBasic General
Topic: Stand alone NTP Server
Replies: 6
Views: 3165

may be new ublox gps receivers prices lover then others...
http://www.u-blox.com/products/u5modules.html
by okoman
03 Nov 2007 10:22
Forum: mikroBasic General
Topic: RS485 and RS485 Modbus - What is the Difference?
Replies: 1
Views: 1565

modbus is master slave cominication protocol over rs485.
by okoman
02 Nov 2007 21:08
Forum: mikroBasic General
Topic: usart hwd 18f4520 strange behaviour with buffers?
Replies: 4
Views: 2293

you must use interrupt version of usart. search forums as "interrupt usart". pic's rx buffer size 3 bytes but some tımes cant catch some characters regulary. interrupt driven uart and use time out with timer.
by okoman
05 Aug 2007 13:44
Forum: mikroBasic General
Topic: NMEA Messages
Replies: 3
Views: 2700

did yo read your modems datasheet
by okoman
30 Jul 2007 10:02
Forum: mikroBasic General
Topic: Current Wish List
Replies: 187
Views: 184730

auto incramanted version constants. for self checking version inside of program...

ver_major
ver_midor ':)
ver_minor
by okoman
30 Jun 2007 22:32
Forum: mikroBasic General
Topic: eeprom read write decimal numbers
Replies: 14
Views: 5996

yeah dejan_mrtt very fast :)
by okoman
30 Jun 2007 22:28
Forum: mikroBasic General
Topic: eeprom read write decimal numbers
Replies: 14
Views: 5996

your check list on help
"eeprom library" for eeprom read write rutines
"hi" function for your variable parsing to byte
"Lo" function '' '' ''
"@" adress of variable location
"^" pointers

i dont have more time to write code but search forums you can find good codes...
by okoman
30 Jun 2007 22:05
Forum: mikroPascal General
Topic: Library for SENSIRION sensor(humidity and temperature) SHTxx
Replies: 56
Views: 35179

thanks yo2lio nice work. i am looking for sle4xxxx smartcard rutines. just only for learnning how to acces this cards and write some think in it. datasheets not clear for this cards. microchip forum has some smartcard code but not work nice. i saw some whishes about smartcard lib on mE forums. i thi...

Go to advanced search