RE: nx_packet_release returns 0x7 (NX_PTR_ERROR)
Hi karol,The application which i am using is a Client application.So, it will not 'accept' or 'listen' to TCP socket.But i am having nx_tcp_socket_recieve API which will also uses the same packet pool...
View ArticleRE: bug report: _gx_system_timer_expiration()
Hello Jim,What SSP version are you using? I'm looking at the timer expiration function and event type is in fact GX_EVENT_TIMER, which leads me to believe you're using an older version. Display handle...
View ArticleRE: nx_packet_release returns 0x7 (NX_PTR_ERROR)
Hello Nandan,Are you releasing the received packets? According to the manual, user application is responsible for releasing the received packet when it's no longer needed.Regards
View ArticleRE: nx_packet_release returns 0x7 (NX_PTR_ERROR)
Hi karol,Yes, I am releasing the received packets using nx_packet_release after retrieving the data to another buffer.This is how my code looks like.nx_packet_allocate(&pool_0, &rcv_packet_ptr,...
View ArticleRE: nx_packet_release returns 0x7 (NX_PTR_ERROR)
Hello Nandan,You don't have to allocate the packet as this is done automatically by nx_tcp_socket_receive API. Your rcv_packet_ptr pointer is overwritten by receive function and hence, you're never...
View ArticleRE: nx_packet_release returns 0x7 (NX_PTR_ERROR)
Hi karol,Issue solved!!It had been a blocking issue for me.Thanks for very quick response. I am very happy with the amazing support.Regards
View ArticleRE: USBHS - DEVICE Mass Storage example
Hello Fabio,Currently there's no way to enable device mode on USBHS peripheral. There is a patch planned to be released in the near future addressing this issue.Regards
View ArticleRE: USBHS - DEVICE Mass Storage example
What is the release date of the patch?Regards,Fabio
View ArticleUSBHS - DEVICE Mass Storage example
Hi,we need to use the USB_HS peripheral of S7 in DEVICE mode for Mass Storage implementation.We use SK-S7G2 and I could mount a USB-B connector into the USB_HS interface..There are some examples of how...
View ArticleRE: bug report: _gx_system_timer_expiration()
I am using SSP 1.1.1. In the Components tab of the Synergy Configuration this sets "gx" and "gx_src" to 1.1.0. I just double checked and I was mistaken about the "11". The source code actually did...
View Articlebug report: _gx_system_timer_expiration()
The function _gx_system_timer_expiration() calls _gx_system_event_fold(&timer_event) without setting all of the elements of the timer_event structure.This causes timer_event.gx_event_target to have...
View ArticleRE: Very Simple I2C Example
Hello and another question. I created a BSP package for the DK S3 board, configured the project, then imported the archive file (for the blinky) and configured again - but it does not compile. I'm on...
View ArticleVery Simple I2C Example
Hello,I am coming up on the Renesas Synergy from the 8-bit world - what is the simplest app note or code snippet to show I2C working? Thank you!
View Articleusing netX protocols with a wifi module
HiIs it possible te use the high- level netX protocols like FTP and HTTP without low-level netX stuff?Should be nice with a wifi module.Dig
View ArticleRE: g_sf_comms.p_api->write hang issue
Hello Nandan,Make sure your USBFS INT interrupt is enabled in sf_el_ux. Also, make sure the USB is actually connected, as this API will wait until USB communication is established. It's always best to...
View ArticleRE: USB protocol without ThreadX
From the USBx user manual:"USBX also relies on ThreadX semaphores, mutexes, and threads for multiple thread protection, and I/O suspension and periodic processing for monitoring the USB bus...
View ArticleUSB protocol without ThreadX
Is it possibile to create an USB protocol using the SYNERGY S1 microcontroller without setting the TheadX RTOS? I'm Using a Synergy S1 microcontroller (DK-S124) and E2Studio 5.1.0.022 with Synergy...
View ArticleRE: g_sf_comms.p_api->write hang issue
Hi karol,USB is connected and interrupt is enabled.I am able to see the prints too on the console. After some time the API is hanging.Which are the possibilities where the API will be blocked...
View Article