Forum Post: RE: Update to Creating Custom BSP App Note
Good catch. The new location is here: en-us.knowledgebase.renesas.com/.../How_do_you_get_the_Synergy_Custom_BSP_Creator_to_work%3F_Im_having_problems_with_the_app_note Warren
View ArticleForum Post: RE: tx_mutex_get returns error in threadx synergy
Hi KAROL, Thank you once again. I want to lock the memory buffer. Regards
View ArticleForum Post: Unable to add breakpoint
Hi all, I am trying to add breakpoint in .c file in e2 studio. But i am unable to add it. Is there any particular reason why i am unable to add breakpoint ? Thanks & Regards
View ArticleForum Post: RE: g_sf_comms.p_api- write hang issue
Hi karol, I didnot change memory(65536) and read input buffer size(128). I tried changing the TX_NO_WAIT to 1, but the result is same. Data size what i am writing is less than 50 characters. As per my...
View ArticleForum Post: tx_byte_release return TX_CALLER_ERROR
Hi all, I have created a memory byte pool and allocate the memory using tx_byte_allocate in one function. Then i pass the memory_ptr which is pointer to a destination memory pointer in another...
View ArticleForum Post: RE: tx_mutex_get returns error in threadx synergy
Hello Dhiraj, In this simple scenario you can use the semaphore. When buffer is unlocked (i.e. available), the semaphore count should be 1. Your application needs to execute tx_semaphore_get() before...
View ArticleForum Post: RE: Unable to add breakpoint
Hello Dhiraj, Do you see any message pop up when try to create a breakpoint? Try right clicking on the line number (to the left of the source) and clicking either Toggle Software Breakpoint or Toggle...
View ArticleForum Post: RE: g_sf_comms.p_api- write hang issue
Hello Nandan, Are you seeing the same result after replacing the "write" call with g_sf_comms.p_api- write(g_sf_comms.p_ctrl, "socket send failed\n", 19, 1);? Also, are using the USB driver provided...
View ArticleForum Post: RE: tx_mutex_get returns error in threadx synergy
Hi KAROL, Thank you very much for the help. :) Regards
View ArticleForum Post: RE: tx_byte_release return TX_CALLER_ERROR
Hello Dhiraj, Return values are documented in the ThreadX User's Manual (r11um0006eu0500). tx_byte_release can only be called from initialization and threads (no interrupt routines): Regards
View ArticleForum Post: RE: Unable to add breakpoint
Hi KAROL, No, I didnt see any pop up. I tried the way you explain earlier and its working fine. Thank you :) Regards
View ArticleForum Post: RE: tx_byte_release return TX_CALLER_ERROR
Hi KAROL, Thank you so much. It was very helpful. Regards
View ArticleForum Post: RE: g_sf_comms.p_api- write hang issue
Hi karol, Write is failing at different places. I have a common function called debug_print. void debug_print(char * log) { g_sf_comms.p_api- lock(g_sf_comms.p_ctrl,SF_COMMS_LOCK_ALL,TX_WAIT_FOREVER);...
View ArticleForum Post: RE: g_sf_comms.p_api- write hang issue
All memory in the Synergy project is allocated statically (even the heap pool), RAM usage can be seen in the compiler output (RAM = data + bss). Try increasing global heap a little bit and also the...
View ArticleForum Post: RE: g_sf_comms.p_api- write hang issue
Thanks for the reply karol! If i comment out the gx_system_canvas_refresh write will not hang. It is working fine!! It is in a while loop,updating the system up time to the lcd. What might be the...
View ArticleForum Post: RE: g_sf_comms.p_api- write hang issue
Hello Nandan, Seems like standard library functions you're using are corrupting dave2d heap. Please replace S7G2.ld file (script folder) with the following one (change extension to .ld): (Please visit...
View ArticleForum Post: Missing Crypto API's Return NULL pointers- crash results
The Crypto API createKey(), encryptFinal() and addAdditionalAuthenticationData() interface functions currently do not have an underlying implementation and are thus assigned a null pointer. This NULL...
View ArticleForum Post: RE: g_sf_comms.p_api- write hang issue
Hi karol, Looks like issue has been solved!! Thanks alot!! Do i need to replace S7G2.ld script file every time when i create a new project? Is this a bug in the currently using SSP? Regards
View ArticleForum Post: RE: g_sf_comms.p_api- write hang issue
Hello Nandan, This issue will be fixed in the future release. It is caused by d/ave2d section name which has "heap" in it. The linker script then places it between heap_start and heap_end symbols...
View ArticleForum Post: RE: dual ethernet ports
Tim, You can download a dual Ether Port example from the link below. drive.google.com/.../view This example project works on DK_S7G2 board. The Ether port on main board is configured for IP address...
View Article