Forum Post: RE: Problem with arabian language
Hello, Please use unicode lookup table such as this one: https://unicodelookup.com/ to determine what are the half-word codes for your characters. You can adjust character range in GUIX dynamically...
View ArticleForum Post: RE: Which events belong to which event classes?
I ran the demo once more and tapped repeatedly until it trapped. The location is touch_thread_entry.c: if (gxe.gx_event_type != GX_NULL) { APP_ERROR_TRAP( gx_system_event_send(&gxe)); // <== here }
View ArticleForum Post: RE: Which events belong to which event classes?
What is the p_message->event_type at that point? Have you modified the code? I'm looking at the source and I can only see: if (gxe.gx_event_type != GX_NULL) { status =...
View ArticleBlog Post: Using the new tool to create a Custom Board Support Package Pack
A few months ago, I wrote a post about how to Create a Custom Board Support Package which demonstrated how to use batch files and some magic to make your very own board support packages. As you may...
View ArticleForum Post: RE: new touch controller
In theory, it seems reasonable to follow the procedure detailed in the GUIX Hello World example. When adding the Touch Panel Framework, just use a slightly different name than sx8654; say "sjg8654"....
View ArticleForum Post: ARP and static IP enable problem
I am trying to send UDP packets between two S7G2 modules using NetX and SSP 1.1.3. I am using fixed Private IP addresses in the range of 10.0.0.nn The following are set up on both boards with no...
View ArticleForum Post: RE: ARP and static IP enable problem
Found at least part of the issue: These addresses work: // works #define BRIDGE_IP_ADDRESS IP_ADDRESS(10,101,1,17) // works #define DCM_IP_ADDRESS IP_ADDRESS(10,101,1,26) These two do NOT work: #define...
View ArticleForum Post: RE: ARP and static IP enable problem
0xFF000000 It has been awhile since I played with subnetting, but I believe your current mask allows only the least significant octet to vary.
View ArticleForum Post: RE: new touch controller
Hello Steve, sf_touch_panel_i2c.c and .h files belong to top-level touch panel framework and are common between all touch controllers (unless you'd like to use raw ADC or SPI touch controller). As long...
View ArticleForum Post: RE: ARP and static IP enable problem
Hello Steve D., I agree with Steve, you have to adjust your subnet mask to allow for certain octets to vary. Alternatively, assign another IP address in the other subnet and use it for communication...
View ArticleForum Post: Semitransparent widgets
Dear all, I would like to make some widgets/windows of my GUI semitransparent (not only the background but the whole widget or window). I need the whole window to become semitransparent when showing a...
View ArticleForum Post: RE: Semitransparent widgets
Hello, You can add semi-transparency to your window widget in one of 2 ways: * Set window to transparent and apply pixelmap wallpaper. Make sure the pixelmap has alpha channel enabled (and is...
View ArticleForum Post: RE: Semitransparent widgets
It looks like the GUIX example with an apple (on my computer they are in C:/EXpress_Logic/GUIX_Studio_5.0/examples and you have a project "all_widget" you can build it with MS Visual C++ Express. When...
View ArticleForum Post: RE: ARP and static IP enable problem
Hi Steve, Here's a handy subnet chart that shows how to create a mask for a given range of addresses: (Please visit the site to view this file) -Gary
View ArticleForum Post: undefined reference to _gx_synergy_display_driver_setup
How to I solve this problem where I have a undefined reference to _gx_synergy_display_driver_setup when using GUIX 5.3.2.4 and SSP 1.2.0-b.1 in protected file under sf_el_gx_driver_setup().
View ArticleForum Post: RE: Which events belong to which event classes?
Hi Karol, I could not get back to you yesterday. I had an internet problem with the Renesas site (and only Renesas). I finally achieved enlightenment: a reboot solved the problem. Yep, that's the same...
View ArticleForum Post: RE: undefined reference to _gx_synergy_display_driver_setup
Hello, Please make sure of the following: * That you use latest GUIX Studio version available from the Synergy Gallery (i.e. 5.3.2.2) * Configure "GUIX" version in GUIX Studio project as 5.3.2 (when...
View ArticleForum Post: RE: undefined reference to _gx_synergy_display_driver_setup
This fixed the errors but I am not able to see anything on the screen, I am trying to make an updated (1.2.0-b.1) version of the Hello World app. Is there a PDF that follows this guide with the updated...
View ArticleForum Post: RE: undefined reference to _gx_synergy_display_driver_setup
Hello, Upgrade documentation is available from the Gallery. Follow "Synergy Software Package" -> Release Archive -> Upgrade Documents for SSP 1.2.0-b.1. Regards
View Article