Search found 8 matches

by jin1990
21 Feb 2019 14:55
Forum: PIC PRO Compilers
Topic: UART_Write_Text(text) overwrites characters on Lcd_Out(char)
Replies: 11
Views: 3864

Re: UART_Write_Text(text) overwrites characters on Lcd_Out(c

Hi, There is an MCU card with PIC18F8722, so you can use it with EasyPIC PRO v7 . Unfortunately, you cannot use it with EasyPIC v7. For EasyPIC v7, I suggest you consider to use the PIC18F45K22. Kind regards, Sir, it would be my first time to use PIC18 MCU. Would there be any changes in the syntax?
by jin1990
21 Feb 2019 06:35
Forum: PIC PRO Compilers
Topic: UART_Write_Text(text) overwrites characters on Lcd_Out(char)
Replies: 11
Views: 3864

Re: UART_Write_Text(text) overwrites characters on Lcd_Out(c

Hi, I've noticed that UART_Write_Text nevertheless consumes slightly RAM and ROM memory for their local variables and parameters. So, I really suggest you upgrade to PIC18 if you do not want to set IRP bit manually. If you decide to use IRP bit setting manually, you will still having trouble in usi...
by jin1990
19 Feb 2019 04:22
Forum: mikroC General
Topic: Real Time Clock Library for PIC16f877a
Replies: 2
Views: 1986

Re: Real Time Clock Library for PIC16f877a

jovana.medakovic wrote:Hi,

Could you tell me which RTC you are referring to?

Kind regards,
Jovana
Sir, is it possible not to use any RTC module? if not possible I'm thinking f using DS1307 RTC.
by jin1990
14 Feb 2019 18:01
Forum: PIC PRO Compilers
Topic: UART_Write_Text(text) overwrites characters on Lcd_Out(char)
Replies: 11
Views: 3864

Re: UART_Write_Text(text) overwrites characters on Lcd_Out(c

Hi, You're welcome. I'm glad that you have managed to stabilize your project. You do not need to reduce text size which you display on UART, because this text is not stored in the memory. Reducing the size of strings and other variables for memory bank 0,1 would be enough if you don't want to set I...
by jin1990
14 Feb 2019 17:56
Forum: mikroC General
Topic: Real Time Clock Library for PIC16f877a
Replies: 2
Views: 1986

Real Time Clock Library for PIC16f877a

I am developing an embedded system with a reward system. One of the requirements is to include real-time date and time in the receipt/token.

Is there a real-time clock/date library for PIC16f877a which I could use to print out a receipt/token with real-time date and time?
by jin1990
14 Feb 2019 01:15
Forum: PIC PRO Compilers
Topic: UART_Write_Text(text) overwrites characters on Lcd_Out(char)
Replies: 11
Views: 3864

Re: UART_Write_Text(text) overwrites characters on Lcd_Out(c

Hi, This is the pretty old MCU with low memory, so you're facing a memory bank problem. I suggest you use one string variable for displaying strings on the LCD, so you can use: char txt[10]; instead of Cweight[10]; and Creward[10];, because you have been using these strings only for format float to...
by jin1990
12 Feb 2019 21:52
Forum: PIC PRO Compilers
Topic: UART_Write_Text(text) overwrites characters on Lcd_Out(char)
Replies: 11
Views: 3864

Re: UART_Write_Text(text) overwrites characters on Lcd_Out(c

Hi, That sounds really weird. Could you please zip the whole project or a part of the project which reproduces the same issue and attach here or send to my email ( stefan.filipovic@mikroe.com ) directly? I will try to reproduce the same issue and locate the problem. Kind regards, Sir, I have alread...
by jin1990
12 Feb 2019 08:57
Forum: PIC PRO Compilers
Topic: UART_Write_Text(text) overwrites characters on Lcd_Out(char)
Replies: 11
Views: 3864

UART_Write_Text(text) overwrites characters on Lcd_Out(char)

I'm developing an embedded system that can identify soda cans with the use of some sensors and PIC16f877a. This is my main function: #define HX711_DT PORTC.F5 #define HX711_DT_TRIS TRISC.F5 #define HX711_SK PORTC.F4 #define HX711_SK_TRIS TRISC.F4 #define IR_Sensor1 PORTD.F0 #define IR_Sensor1_TRIS T...

Go to advanced search