Forum Post: RE: NetX capabilities on S7
Also, I think the client side thread should call nx_packet_release(packet_ptr) independently of the nx_tcp_socket_send(&socket_echo, packet_ptr, NX_WAIT_FOREVER) result, otherwise it is allocating...
View ArticleForum Post: RE: NetX capabilities on S7
Hello Laboratori, According to the NetX User's Manual, the application shouldn't release the packet if it was sent successfully: "Unless an error is returned, the application should not release the...
View ArticleForum Post: Enabling buzzer at every touch event?
Hi, I am developing a HMI interface with a capacitive touchscreen, and I have a question. I added a function that enables a buzzer connected to a GPIO output, and I set the duration using a GUIX...
View ArticleForum Post: RE: Enabling buzzer at every touch event?
Hello Laser, Some widgets "sink in" a GX_EVENT_PEN_DOWN and PEN_UP events to produce GX_EVENT_CLICKED signal to the parent widget (signals carry a widget ID in the three most significant bytes of the...
View ArticleForum Post: Using SMTP on e2
Hi all, I've been using the SK-S7G2 development board for a few weeks, mostly playing with the HTTP server sample project. I found a NetX Duo user manual to create a SMTP client, but can't seem to get...
View ArticleForum Post: RE: Using SMTP on e2
Hello Aaron, Did you select nxd_smtp on the components tab (nxd_ is the key part)? Modules starting with nx_ require standard NetX while nxd_ prefix is reserved for NetX Duo modules. Please have a...
View ArticleForum Post: RS485 MODBUS RTU MASTER
Hi all, one of my customers is asking me if exist a Modbus implementation / Library / integration application Note for Synergy. Any idea? They have already runing this Modbus Protocol (Master RTU) in...
View ArticleForum Post: RE: Using SMTP on e2
Thank you Karol, that was exactly my problem. Also thank you for the example project. It'll help me a lot. Aaron
View ArticleForum Post: S7G2-SK Custom_bsp problem
Hello I am using S7G2-SK and i tried all the steps given in the document but it won't work. Step 1: Create a base pack custom_bsp_creator.exe -p Renesas.Synergy.1.1.3.pack -b s7g2_sk -#...
View ArticleForum Post: RE: S7G2-SK Custom_bsp problem
Dear Karol Please look at it and if you have a solution let me know
View ArticleForum Post: RE: S7G2-SK Custom_bsp problem
Hello khawar, Are you using the pack creator from the Gallery? That version is only compatible with 1.0.0. Please try the following archive: (Please visit the site to view this file). It contains...
View ArticleForum Post: RE: RS485 MODBUS RTU MASTER
Hello, The Skkynet VSA offers SCADA and cloud connectivity including MODBUS. This is available on the Synergy Gallery here: synergygallery.renesas.com/.../4 Please download and evaluate this solution...
View ArticleForum Post: I2C device offset
Hi, How do I specify device offset for reading/writing I2C device ? My microchip I2C EEPROM has MAC address at offset 0xFA. I2C HAL APIs do not take address as parameter. Should I read the entire...
View ArticleForum Post: RE: I2C device offset
Hello Siju, You should verify with your datasheet what command you should send and how to supply the address when reading the data from the I2C EEPROM. Each EEPROM is different and I2C peripheral does...
View ArticleForum Post: RE: RS485 MODBUS RTU MASTER
Hi Gary, Thanks for comments, but i´m afraid that the solution provided by Skkynet for Mosdbus, is for TCP and Slaves. The Cogent DataHub is a hardened industrial middleware that...
View ArticleForum Post: Undocumented NetX return values
I'm getting the return value 0x38 from a lot of NetX services that don't document this value. Examples: nx_smtp_mail_send(), nx_tcp_socket_create(), nx_tcp_client_socket_bind()... I know that 0x38...
View ArticleForum Post: RE: RS485 MODBUS RTU MASTER
Please re-read the documentation on Skyynet - it acts as a Modbus Master communicating with slaves.
View ArticleForum Post: RE: Undocumented NetX return values
Netx Apps only document the additional error codes that they generate, any NetX service that the App uses will return the standard NetX error codes. -Gary
View Article