RE: Missing _gx_synergy_display_driver_setup() while building with IAR
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.Regards
View ArticleMissing _gx_synergy_display_driver_setup() while building with IAR
Hi,I recently downloaded and installed IAR EW for Synergy (v.7.40.5.11376) together with the required Renesas SCC (v.5.1.0.010), in trying to totally bypass using ISDE.So far so good, but after...
View ArticleRE: Can't get RTOS Resources to show
I'm getting the same issue, even on the blinky project. Any plans to fix this?
View ArticleRE: Can't get RTOS Resources to show
I'm getting the same issue, even on the blinky project. Any plans to fix this?
View ArticleRE: 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 ArticleCan't get RTOS Resources to show
I'm trying to use the RTOS Resources tab to debug but can't get it to populate. I've been able to use this in the past by doing the following:Click, 'Renesas Views', 'Partner OS', 'RTOS Resources'....
View ArticleRE: Missing _gx_synergy_display_driver_setup() while building with IAR
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 (first...
View ArticleRE: Missing _gx_synergy_display_driver_setup() while building with IAR
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){ (void)p_args;...
View ArticleRE: 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 processing...
View ArticleRE: 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 ArticleRE: 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 ArticleRE: 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 ArticleEnable 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 nx_tcp_client_socket_connect...
View ArticleRE: Missing _gx_synergy_display_driver_setup() while building with IAR
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 ArticleRE: Measuring cpu load
Hi Ian,Thank you for the info and the code. Ill give this a try. Matt
View ArticleRE: SSC with IAR brings in all files from Src directory
Hi Alex,Ok, good to know.Thank you Matt
View ArticleRE: Missing _gx_synergy_display_driver_setup() while building with IAR
Make sure you are waiting on the correct queue for the messaging framework messages, as the setup has changed in SSP 1.1.0
View ArticleRE: Missing _gx_synergy_display_driver_setup() while building with IAR
Make sure you are waiting on the correct queue for the messaging framework messages, as the setup has changed in SSP 1.1.0
View ArticleRE: USBX Throughput Expectations
The USBX improvements included in this patch SSP1.1.1 are specific to USBHS Host mode operations. A few of the changes are in the common area, which might have an impact on USBFS Host operations.
View ArticleUSBX Throughput Expectations
What are the anticipated throughput numbers when using USBFS/USBHS in the device/host mode configuration? We've hooked a ram disk to the USBFS Device and see ~120KBps, well below the theoretical...
View Article