Search found 38 matches

by FreeMan
12 Oct 2018 16:01
Forum: Visual TFT General
Topic: ILI9325 Library Driver
Replies: 1
Views: 1646

ILI9325 Library Driver

Dear All, since some time i got some TFT displays using the ILI9325 and there was an issue to make them work since the library/driver for them seams like impossible to get... some info can be found here: https://www.cnblogs.com/fuqiangshan/archive/2012/05/17/2506135.html .... still not complete. so ...
by FreeMan
26 Aug 2011 14:22
Forum: mikroC PRO for PIC General
Topic: PIC18F14K50 does not have ADC library?
Replies: 12
Views: 2822

Re: PIC18F14K50 does not have ADC library?

Peace be with you womai, Since the reason of selecting this chip was about the USB, maybe one of those chips can do the same job you want and they include USB module fully working : Chip Name Pin N USB + 10bits ADC PIC18F2450 28 PIC18F4450 40 PIC18F2455 28 PIC18F2550 28 PIC18F4455 40 PIC18F4550 40 U...
by FreeMan
13 Apr 2010 15:19
Forum: mikroC General
Topic: Pic 16f628a comparator intterupts
Replies: 10
Views: 5285

Nice program you have there

peace be with you i notice you had did the changes, that is good that works now, and how about doing little improvment in the program: int counter Absolute 0x20 ' reserve the adress char y[4] Absolute 0x20 ' over lapping variables and those procedure by these: void loadFromEeprom() { y[0] = EEprom_R...
by FreeMan
08 Apr 2010 17:15
Forum: mikroC General
Topic: Pic 16f628a comparator intterupts
Replies: 10
Views: 5285

Re: Pic 16f628a comparator intterupts

Peace be with you

how about changing in your program the line :

Code: Select all

  PIR1.CMIE = 1;
by the line :

Code: Select all

   PIE1.CMIE = 1;
PIR1 is a flag register, PIE1 is interrupt register. If possible let me know how it goes.

Peace be with you
freeman
by FreeMan
13 Nov 2009 19:16
Forum: mikroC PRO for PIC General
Topic: Why oh why?
Replies: 8
Views: 4345

Some hints that can help.

Peace be with you, Here is a code from MicroChip bootloader PC software , i dont remember the file name, i think it is: AN851, of course you can go to thier website and search/download it. Their project got more information then what i have here with me. I think this part of the code may give you a ...
by FreeMan
07 Nov 2009 14:55
Forum: mikroBasic PRO for PIC General
Topic: PIC to PIC Comms via I2C (H/W) - HELP!!!
Replies: 7
Views: 3898

Maybe you can still do it even NOW!!

Peace be with you I think it is possible to make things happening even now is just you know how! sometime ago i did answered a something very similar, i think the question asked was not the same, but the answer is the same. http://www.mikroe.com/forum/viewtopic.php?p=103399&highlight=#103399 in brie...
by FreeMan
07 Nov 2009 14:37
Forum: mikroBasic PRO for PIC General
Topic: Convert to MBP anyone?
Replies: 2
Views: 2002

Did you read the built-in library of mikroe? Spi_Lcd_Init ?

Peace be with you i think (just me) that is a lot of work to convert this to a high level language and been able to add or change it for owr use. i think that: why re-inventing the weels? there are plenty of libraries already made and included in the software for everyone to use for free. the best s...
by FreeMan
03 Sep 2009 17:12
Forum: mikroC General
Topic: Bit implementetion Problem
Replies: 15
Views: 6668

How about reducing the Code size?

Peace be with you my dear Pesticida, maybe this can reduce the size of your code: Replace this code by this one (PortB.F1 == 1 && PortB.F2 == 1) (PortB && 0x03 == 0x03) // reduce one equal operation (PortB.F2 == 0 && PortB.F1 == 0) (PortB && 0x03 == 0) // reduce one equal operation counter/=2 counte...
by FreeMan
14 Aug 2009 09:58
Forum: mikroC General
Topic: Bit implementetion Problem
Replies: 15
Views: 6668

Other alternative

Peace be with you, here is also an other alternative of the bit manipulation: http://www.mikroe.com/forum/viewtopic.php?t=20874&highlight=setbit look at the replay of : fabim that is a nice aproach if you can make a library and just include it in your main program to have access to it, that would be...
by FreeMan
13 Aug 2009 17:39
Forum: mikroC General
Topic: Bit implementetion Problem
Replies: 15
Views: 6668

That is about bit manipulation

Peace be with you Alright, i dont know which version of compiler you are using nor which MCU but i will give you some hints that can turn this situation over ;) I am using MikroBasic V6.00, and everything works just fine here, with constant and also with variable and with all suggestions proposed he...
by FreeMan
07 Jul 2009 18:44
Forum: mikroC PRO for PIC General
Topic: PIC doesn´t attend interrupts.
Replies: 12
Views: 6069

Some alternative ideas

peace be with you, first of all, i am not a C programmer therefore if you find any errors in the program just blame me. also this peace of software made here is NOT tested, so it is offered 'as it is'. Here is what i think is the thing, there are many complex operation in condition 'IF (.... ) ' the...
by FreeMan
29 Jun 2009 15:53
Forum: mikroBasic General
Topic: Trivial problem SOFT_UART_READ()
Replies: 4
Views: 2190

Already gave you pointers, did you tried them?!

you shouldn't put many posts about one and same issue, this makes the forum very crowded and losing track of other people asking for help or guidance. yeah equality before the law, no matter who you are. http://www.mikroe.com/forum/viewtopic.php?p=103399&highlight=#103399 try first what i suggested ...
by FreeMan
29 Jun 2009 15:11
Forum: mikroBasic General
Topic: soft_uart and trasmizioni numerical values
Replies: 4
Views: 3148

Soft Usart is NOT Usart, but close.

Peace be with you First of all , i did not used soft-usart, but i will give you some pointers: - NO BUFFER !!! - NOT full duplex. = meaning = it can only read or write at sametime. so, to make sure of a good synchronisation, the computer software must be reading at certian time and then will wait un...
by FreeMan
18 May 2009 14:22
Forum: mikroC General
Topic: PIC problem with modem <HELP>
Replies: 31
Views: 13693

hmmm how about ...

peace be on you, first of all and before anything to say i must start by saying that your way of posting your code here makes it very hard to people to fellow your idea. To post the code here please :1 select all your code (after you past it here) then click on the button 'CODE', so like this it wil...
by FreeMan
01 May 2009 15:23
Forum: mikroPascal General
Topic: USART Data Format
Replies: 18
Views: 10761

Forgotten info

Go to advanced search