Search found 218 matches

by lejeff
14 Mar 2019 13:38
Forum: Visual TFT General
Topic: Impossible to open project with V 4.6.1
Replies: 1
Views: 1081

Impossible to open project with V 4.6.1

Hello Me team
I've upgraded VTFT from 3.9.0.0 (may be) to 4.6.1
I'm not able to open my project, (attached)
After backup (backup successfully completed) the following message appear
"Error reading main_scr.Static_:Property Static_ does not exist"

Please help
by lejeff
31 May 2017 06:05
Forum: mikroC PRO for ARM Wish List
Topic: Issue with FT800 visual TFT generated code
Replies: 2
Views: 2413

Re: Issue with FT800 visual TFT generated code

It seems that a line is missing in your code (Internal modules setup) is : .... FT800_Touch_SetConfig(&VTFT_FT800_CONFIG_TOUCH); FT800_Touch_Calibrate(_FT800_FONT_ROBOTO_SIZE_10, "Touch blinking point on the screen!"); .... should be : .... FT800_Touch_SetConfig(&VTFT_FT800_CONFIG_TOUCH); FT800_Touc...
by lejeff
29 May 2017 16:46
Forum: Visual TFT General
Topic: Riverdi 4.3" Touch screen calibration constants [SOLVED]
Replies: 4
Views: 3264

Re: Riverdi 4.3" Touch screen calibration constants

Thanks for your reply In fact the issue was in the code and I've fixed it (see attached extract of the code) I've enter the 6 returned values in VTFT project settings (touch panel tab _ preset values) and everything is OK void refresh_coordinates() { FT800_TouchTransform_GetConfig(&CalibrateConstant...
by lejeff
28 May 2017 17:13
Forum: Visual TFT General
Topic: Riverdi 4.3" Touch screen calibration constants [SOLVED]
Replies: 4
Views: 3264

Riverdi 4.3" Touch screen calibration constants [SOLVED]

Hello ME team To avoid manual calibration at each start of my project I try to get the 6 transform coordinate values (TransformA to F) to use preset touchscreen calibration HW : easypic fusion V7 with pic32MX460F512L + Riverdi clik on mikrobus1 socket (using SPI2) + Riverdi touch screen 4.3"UXB SW :...
by lejeff
07 Mar 2017 10:43
Forum: Library Development Discussion
Topic: GPS Parser library
Replies: 1
Views: 5193

GPS Parser library

Hi
Do you have available the same library for "MikroBasic for PIC32"
https://libstock.mikroe.com/projects/vi ... gps-parser
by lejeff
03 Nov 2016 10:16
Forum: Visual TFT General
Topic: RIVERDICLICK examples
Replies: 6
Views: 6575

Re: RIVERDICLICK examples

Found it :D
That line was missing in init_mcu()

sub procedure Init_MCU()
' Setup FT800 SPI interface
SPI2_Init_Advanced(_SPI_MASTER, _SPI_8_BIT, 8, _SPI_SS_DISABLE, _SPI_DATA_SAMPLE_MIDDLE, _SPI_CLK_IDLE_LOW, _SPI_IDLE_2_ACTIVE)
end sub

up to now everything works
by lejeff
02 Nov 2016 14:15
Forum: Visual TFT General
Topic: RIVERDICLICK examples
Replies: 6
Views: 6575

Re: RIVERDICLICK examples

Hi Aleksandar I've tried the files you've proposed after generated the code visualTFT (V4.6.1) in µbasicpro for PIC32 (V3.6.0) I use µprog suite (V2.40) with the latest drivers for windows10 The only result is a blank screen HW is as below - easypicfusion V7 (easyTFT display removed, all switches ar...
by lejeff
01 Nov 2016 10:48
Forum: Libstock Discussion
Topic: NMEA library for MB for pic32
Replies: 1
Views: 6184

NMEA library for MB for pic32

Hi
I can't find this library for MB pic 32
http://libstock.mikroe.com/projects/vie ... ea-library

Can you please provide it on libstock

Thanks in advance
by lejeff
24 Oct 2016 13:02
Forum: Visual TFT General
Topic: RIVERDICLICK examples
Replies: 6
Views: 6575

Re: RIVERDICLICK examples

Hi

Thank you for your reply
Where can I find SPI examples, on the RIVERDICLICK product page it's said that the examples "coming soon !"
http://www.mikroe.com/click/riverdi/
When is "soon" ??

Regards
by lejeff
18 Oct 2016 08:47
Forum: Visual TFT General
Topic: RIVERDICLICK examples
Replies: 6
Views: 6575

RIVERDICLICK examples

Hi ME team
Have you an example code to use RIVERDI click board in I2C mode with Riverdi Display 4.3" UXW (PIC32 in microC or in mikrobasic) ?

Thanks in advance
by lejeff
19 Apr 2015 17:06
Forum: mikroProg™ programmer and debugger
Topic: Can not program DSpic33ep256gp502 with microProg?
Replies: 3
Views: 2573

Re: Can not program DSpic33ep256gp502 with microProg?

DSpic33ECxxx MCUs are not in the list of Mikroprog supported devices
http://www.mikroe.com/mikroprog/pic-dspic-pic32/
May be you should try with PICKIT3 Microchip programmer
by lejeff
09 Apr 2015 08:11
Forum: mikroBasic PRO for dsPIC30/33 and PIC24 Wish List
Topic: Simplified IF..THEN
Replies: 2
Views: 2863

Re: Simplified IF..THEN

don't forget end if

IF myvar = 10 THEN GOTO PROCESS10 END IF
by lejeff
09 Apr 2015 08:07
Forum: mikroBasic PRO for PIC General
Topic: Extern param not resolved
Replies: 11
Views: 5134

Re: Extern param not resolved

As a work around you can create your own PWM routine using a timer interrupt The code is written with mikrobasic for PIC32 (easy to translate in C) For my needs the PWM pin is RD2 of the PIC32MX460 Dim BPWM_duty, PWM_On, PWM_Off as word sub procedure InitTimer2() 'set to 125µs T2CON = 0x8000 T2IE_bi...
by lejeff
24 Mar 2015 12:42
Forum: mikroC PRO for PIC General
Topic: Counter on PIC16f877A
Replies: 1
Views: 1230

Re: Counter on PIC16f877A

Hi You can use something like that All subs are written in mikrobasic for PIC32, you can adapt it for your MCU Set a timer (timer 1 for example) at 1 ms sub procedure InitTimer1() 'set to 1 ms T1CON = 0x8010 T1IE_bit = 1 T1IF_bit = 0 T1IP0_bit = 1 T1IP1_bit = 1 T1IP2_bit = 1 PR1 = 10000 TMR1 = 0 end...
by lejeff
09 Mar 2015 11:30
Forum: mikroC PRO for PIC General
Topic: Read GY-26 Digital compass with I2C
Replies: 11
Views: 5831

Re: Read GY-26 Digital compass with I2C

It seems that you are right :wink:
Read at the bottom of that page
http://www.ez-robot.com/Community/Forum ... 918&page=2

Go to advanced search