Forum Post: RE: Measuring cpu load
Hi, There is an interesting article here on the Express Logic website discussing this topic. The non-invasive techniques should be usable with Synergy and the SSP. To measure overall CPU loading a...
View ArticleForum Post: gx_single_line_text_input_character_insert prints string
Hi The Guix gx_single_line_text_input_character_insert actually inserts a string instead of a character. The arguments must be a pointer and nr of characters. The Guix userguide 5.3 is not correct.
View ArticleForum Post: RE: Measuring cpu load
Thank you Ian. I like the low priority counter idea and approach. Im surprised Express Logic folks dont have something already available right out of the box. Thanks Matt
View ArticleForum Post: RE: SSC with IAR brings in all files from Src directory
Matt, This is actually a feature, meaning this behavior is by design. The src folder is only for files being used in the project. For other files another folder should/must be used. If kept in the...
View ArticleForum Post: How to implement multiple languages using GUIX on The Renesas...
If anyone is thinking about implementing multilingual support on a graphical user interface, the video below shows some ways to achieve this efficiently with GUIX. Click Here
View ArticleForum Post: RE: Measuring cpu load
Hi, Attached is an example project which calculates CPU loading. The threads in the system are just delays so the loading is at 1% but it shows it working. I have tried it in more complex applications...
View ArticleForum Post: RE: Missing _gx_synergy_display_driver_setup() while building...
Jeremy, Thanks for the quick reply! Part of the migration I managed on my own already, and the rest with the help of the indicated guide. The project compiles and runs now, but it gets stuck in the...
View ArticleForum Post: RE: Missing _gx_synergy_display_driver_setup() while building...
Hello Arthur, The initialization gets stuck on the second write, meaning there's a problem with flow control. Make sure the necessary semaphore is created and that SPI callback function is defined....
View ArticleForum Post: RE: Can't get RTOS Resources to show
I'm getting the same issue, even on the blinky project. Any plans to fix this?
View ArticleForum Post: RE: Can't get RTOS Resources to show
I'm getting the same issue, even on the blinky project. Any plans to fix this?
View ArticleForum Post: RE: Can't get RTOS Resources to show
Here is a possible work around for now: Create a new "Blinky with ThreadX" sample project using the Synergy new project wizard in your workspace. Hit the generate code button in the configurator, then...
View ArticleForum Post: Enable NetX Socket ADDR_REUSE Flag
Hi, I am using nx_tcp_client_socket_connect API. I want to set socket address reuse flag , which is possible in linux. Is there any way to do this? Because First when i use...
View ArticleForum Post: RE: Missing _gx_synergy_display_driver_setup() while building...
Thanks Karol. That's a good point, however this doesn’t seem to be my problem (the SPI IRQ fires and the callback resets the semaphore). It's actually the sixth attempt to lcd_write() that hangs...
View ArticleForum Post: RE: Missing _gx_synergy_display_driver_setup() while building...
Hello Arthur, Can you please replace the SPI callback function with the following implementation: #if defined(BSP_BOARD_S7G2_SK) void g_lcd_spi_callback(spi_callback_args_t * p_args) {...
View ArticleForum Post: RE: Enable NetX Socket ADDR_REUSE Flag
Hello NaN, According to nx_api.h header file, 0x38 stands for NX_NOT_CONNECTED. Try using nx_ip_status_check(&ip_0, NX_IP_INITIALIZE_DONE, &actual_status, NX_WAIT_FOREVER); to hold up...
View ArticleForum Post: RE: Enable NetX Socket ADDR_REUSE Flag
Hi Karol, Thanks for the Reply! I have the code nx_ip_status_check(&ip_0, NX_IP_INITIALIZE_DONE, &actual_status, NX_WAIT_FOREVER); before nx_tcp_client_socket_connect and it is returning...
View ArticleForum Post: RE: Enable NetX Socket ADDR_REUSE Flag
Hello again, Can you make sure you create and bind TCP socket before requesting the connection (nx_tcp_socket_create() and nx_tcp_client_socket_bind() respectively). Regards
View ArticleForum Post: RE: Enable NetX Socket ADDR_REUSE Flag
Hi Karol, Both socket create and Bind are returning the value 0 which means success. But after that nx_tcp_client_socket_connect is returning 0x38 value. The same code works well, when i run it first...
View ArticleForum Post: RE: Missing _gx_synergy_display_driver_setup() while building...
Thanks so much Karol, that did the trick! Now I have something on the display and can begin with investigating where did the "touch" functionality go...
View ArticleForum Post: RE: Measuring cpu load
Hi Ian, Thank you for the info and the code. Ill give this a try. Matt
View Article