Forum Post: RE: using netX protocols with a wifi module
Hello Dig, NetX Application modules rely heavily on underlying NetX code in order to provide protocol implementation. WiFi module support is coming to Synergy in the near future however. In the...
View ArticleForum Post: RE: bug report: _gx_system_timer_expiration()
Hello Jim, The team is looking into the problem, however I'm aware of another issue, where calling gx_widget_delete does not release its view (and you're only limited to 31 views per application). As...
View ArticleForum Post: g_sf_comms.p_api- write hang issue
Hi, I am using g_sf_comms.p_api- write(g_sf_comms.p_ctrl,log,strlen(log),TX_NO_WAIT); to write the data to console. Sometimes , After dumping the data to cosole , the control is not coming out of this...
View ArticleForum Post: RE: g_sf_comms.p_api- write hang issue
Hello Nandan, Which comms framework are you using (UART, USB or Telnet)? When you pause the application, where does it stop? Regards
View ArticleForum Post: RE: g_sf_comms.p_api- write hang issue
Hi karol, I am using USB framework. When i give step over, the control is going inside this API, but it is not coming out. Regards, Nandan G
View ArticleForum Post: RE: How to see the memory usage tab in graphical view ?
Hi KAROL, Thank you for the help. Regards
View ArticleForum Post: USB 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 ArticleForum Post: RE: USB protocol without ThreadX
Hello Andrea, Currently USB support for Synergy is provide by USBX Framework which requires ThreadX in order to run. You can create your own USB driver from scratch, without using an RTOS, but you...
View ArticleForum Post: RE: 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...
View ArticleForum Post: RE: USB protocol without ThreadX
Thank you. It is what I imagined. best regards,
View ArticleForum Post: RE: 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 ArticleForum Post: RE: 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 ArticleForum Post: RE: 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 ArticleForum Post: dual ethernet ports
I have two Ethernet ports ETH0 - 192.168.0.100 ETH1 - 192.168.0.101 example GOOD connect to ETH0 and send/receive messages with ETH1 disconnected. all messages are received and sent to ETH0. connect...
View ArticleForum Post: RE: g_sf_comms.p_api- write hang issue
Hello Nandan, Do you have another thread waiting on a "read" call? The ACM write will compete for mutex ownership indefinitely in order to access the device for write. In other words, it will not send...
View ArticleForum Post: RE: Does Ethernet PHy require external interrupt?
This connection caused some confusion here too. I initially thought it is used as a normal external interrupt leading me to believe all IRQn-DS pins can somehow be configured as normal interrupt pins....
View ArticleForum Post: RE: bug report: _gx_system_timer_expiration()
All GUIX Studio widgets are created during GUIX initialization so they shouldn't be deleted. If the widget is not attached to root window or one of its children, its invisible. Detached windows can...
View ArticleForum Post: RE: bug report: _gx_system_timer_expiration()
All GUIX Studio widgets are created during GUIX initialization so they shouldn't be deleted. If the widget is not attached to root window or one of its children, its invisible. Detached windows can...
View ArticleForum Post: RE: g_sf_comms.p_api- write hang issue
Hello Nandan, I'm assuming you're not able to see the source to tell me where exactly does it hang. Try changing TX_NO_WAIT to 1. Generally with USB CDC, you should use TX_WAIT_FOREVER as there are...
View ArticleForum Post: RE: Does Ethernet PHy require external interrupt?
IRQn-DS pins are capable of waking up the device from Deep Software Standby. For any given n, IRQn and IRQn-DS cannot be used simultaneously. All other functionality is the the same between the two....
View Article