Forum Post: RE: GUIX and gx_system_string_get
Hello Enzo, Seems like my instructions earlier were a bit misleading. gx_system_string_get doesn't copy a string from the string table into specified destination but instead, it overwrites the pointer...
View ArticleForum Post: RE: Raw Ethernet (layer 1) packets
Hi Tim, have you tried using the NetX APIs nx_ip_raw_packet_send/receive ? I don't think you would have to write your own driver, but you might need to amend the current driver depending on the...
View ArticleForum Post: RE: Raw Ethernet (layer 1) packets
Hi Stefaan, I have looked at the nx_ip_raw_packet functions. Â These functions allow for processing raw IPv4/IPv6 packets (EtherType 0x0800 or 0x86DD) but do not give access to the low level Ethernet...
View ArticleForum Post: RE: message Queue failure modes when more then 64bytes sent
Hi Karol, A question with respect to this. Â If I have a static char string setup and I pass a pointer of the char string to the message queue which ends up in the thread that is processing it. Â What...
View ArticleForum Post: RE: message Queue failure modes when more then 64bytes sent
Hi, You could use a semaphore. When after putting the pointer in the queue wait on a semaphore before proceeding. In the thread receiving data from the queue post the semaphore when the static string...
View ArticleForum Post: RE: Building issues adding console framework (LAN/USB)
Hello Karol, I still stick at that problem since days, now I took the small SK-S7 GUIApp sample from Renesas and I also tried to add the USB console and I got the same "file not found" error. If I...
View ArticleForum Post: RE: Building issues adding console framework (LAN/USB)
Hello Ralph, Which component are you adding? When console framework is added, you would normally point to the comms interface for it (I'm assuming that's what you're doing). Please ensure that ux,...
View ArticleForum Post: Execution blocked when the timer expires
Hi, I created a new thread in e2studio for a timer gpt. I want to start the timer when I click on a button, and to update a prompt text every time the timer expires. What I actually did is the...
View ArticleForum Post: RE: Execution blocked when the timer expires
Hello Laser, I think it would be much easier to use GUIX timer in this case: case GX_SIGNAL(ID_START_TIMER_BUTTON, GX_EVENT_CLICKED): { Â Â gx_system_timer_start(widget, 1, initial_timeout,...
View ArticleForum Post: RE: GUIX and gx_system_string_get
Hi Karol, thank you very much for your precious help, now everything works. Thanks again Regards -- Enzo
View ArticleForum Post: RE: Building issues adding console framework (LAN/USB)
Hallo Karol, thank you for your reply, unfortunately only building from scratch solved my problem. Console functionality now works again and together with the GUI. But this takes - or better say -...
View ArticleForum Post: GUIX: How to reduce RAM consumption?
Hello, based on the S7-SK the schematics for our own hardware and basic software features (USB, LAN, GUI, SPI, ...) are nearly finished. For our next step was planed to implement the actual...
View ArticleForum Post: RE: GUIX: How to reduce RAM consumption?
Hello Ralph, If you're not using JPEG decode engine and/or D/AVE2D, please do the following: - Remove relevant module stacks from under GUIX Port on sf_el_gx module. - In the properties for sf_el_gx,...
View ArticleForum Post: RE: eMMC on PE-HMI1
Hello Karol, I have created the text file on the eMMC memory. I wrote and read a string in the file and this works. but when I go to read the the file after restart device, the function fx_file_open...
View ArticleForum Post: RE: GUIX: How to reduce RAM consumption?
Hello Karol, thank you yery much, after setting JPEG buffer to 1 and the advanced settings in GUIX studio it works! Then I tried to set "Input - Graphics screen1 input format" to CLUT8 and rebuild my...
View ArticleForum Post: RE: eMMC on PE-HMI1
Hello Laser, After writing to the file, you need to close it and flush the media device. Also, make sure that you're not not formatting the media each time the device boots up. Regards
View ArticleForum Post: RE: GUIX: How to reduce RAM consumption?
Hello Karol, sorry, please forget the things I've wrote regarding CLUT8! It doesn't work at all (as you already mentioned), it seems that eStudio didn't updated the SK correctly (may be two projects...
View ArticleForum Post: RE: GUIX: How to reduce RAM consumption?
Hello Ralph, I'm not sure if setting the color format to CLUT8 on the display driver alone will actually work, since the GUIX initializes RGB565 driver by default. GUIX Adaptation framework doesn't...
View ArticleForum Post: RE: eMMC on PE-HMI1
In start up the media was formatted! I have disabled the formatting and the problem is risolved. Thanks
View ArticleForum Post: RE: eMMC on PE-HMI1
Format media during initialization is enabled. You need to disable it. Regards
View Article