Forum Post: RE: GUIX ssp 1.1.3->1.2.0b
Hello Jean, Have you verified that r_glcd properties match your screen setup? You will also need to re-generate your project resources using latest GUIX Studio (and setting GUIX version number to 5.3.2...
View ArticleForum Post: RE: fx_media_space_available() on media > 4GB
Is the only issue returning the free space available? Can the current 1.1.3 SSP FileX deal with media greater than 4GB if the above change is made? RZ
View ArticleForum Post: RE: fx_media_space_available() on media > 4GB
Hello Rich, On FAT media, data is addressed using LBA which is order of magnitude smaller than the byte offset. Problem with fetching the free space is strictly to do with 32-bit return type that...
View ArticleForum Post: RE: GUIX ssp 1.1.3->1.2.0b
Thank you. It is true that I use GUIX version 5.3.0.1. I will try it with the newer version. Do you think this can be the only issue?
View ArticleForum Post: RE: GUIX ssp 1.1.3->1.2.0b
Hello Jean, I'd update to GUIX Studio 5.3.2.2 (from the Gallery) and set project properties to GUIX version 5.3.2 before making any other changes. SSP 1.2.0 uses GUIX 5.3.2 while GUIX Studio 5.3.0.1...
View ArticleForum Post: RE: fx_media_space_available() on media > 4GB
So simply doing the calculations outside using the media pointer information as opposed to using the call to fx_media_space_available call (in 1.1.3) will work if done as 64 bit? Are they any other...
View ArticleForum Post: Capacitive Touch Workbench for Renesas Synergy (CTW) tool
In the SSP User's Manual for SSP 1.2.0, chapter "Cap Touch Framework" it says " This framework is designed to be used in conjunction with the configuration data generated by the Capacitive Touch...
View ArticleForum Post: RE: S7 Bootloader question
Hi Laser, As you may see in S7SK_HMI_MMF\src\gui\TimeAndTemp_resources.c, there are definitions with __attribute__ ((section(".qspi_flash"))) - all these resource will be placed in the QSPI Flash...
View ArticleForum Post: RE: fx_media_space_available() on media > 4GB
Hello Rich, For size calculations, performing them externally should be perfectly fine. SSP 1.2.0 updates FileX version from 5.2 to 5.4. There is now an option to enable 64-bit LBA (i.e. 64-bit block...
View ArticleForum Post: GPT timer interfering with message buffer
Hi all, I'm having a problem using GPT timer in my thread. I use GPT timer as a delay. The code format as shown below. I don't have any problem with I2C peripheral. It read and writes to the I2C device...
View ArticleForum Post: RE: GPT timer interfering with message buffer
Hi dle! tx_thread_sleep() puts the thread that has called it on hold only. Other threads are working normally. Moreover, a situation when multiple threads are put on "sleep" by tx_thread_sleep() is not...
View ArticleForum Post: Timer events with GUIX
I'm trying to periodically update some text in a prompt widget, but I can't seem to trigger a timer event. The event handler for the target widget is only ever called with draw events, and no timer...
View ArticleForum Post: RE: GPT timer interfering with message buffer
Thank you Jakub for your clarification.
View ArticleForum Post: RE: Timer events with GUIX
Hello Chris, Timer ID is a UINT you should select. GUIX pre-defines some timer ID for widgets (such as button repeat and circular gauge refresh timers), however for most widgets you're free to use the...
View ArticleForum Post: RE: GUIX ssp 1.1.3->1.2.0b
Hello, I have done the update of GUIX and the result is the same. Below is the frame buffer content. After reset it is zero, after sdram init it is 74D574D5. Can the problem be in SDRAM init? maybe the...
View ArticleForum Post: RE: GUIX ssp 1.1.3->1.2.0b
OK, so maybe I got it. I copied bsp_init, sdram and qspi source files from previous project (used with SSP 1.1.3) and copied it to project with SSP 1.2.0 and now it works. Previously I was using...
View ArticleForum Post: RE: GPT timer interfering with message buffer
Hi Jakub, I declare variable with volatile type, even tried with pointer but still can't acquire a buffer for the message. Do you know why? Thanks.
View ArticleForum Post: RE: GPT timer interfering with message buffer
Hello dle, Looping for prolonged period of time without any thread suspension will eventually cause your thread to be pre-emptied (unless it has the highest priority). It's generally not considered a...
View Article