Forum Post: RE: http server compile error: 'g_fx_media0' undeclared (first...
Yes I did. Thank you.
View ArticleForum Post: Getting Gateway Address Using NetX
I notice there is a method in NetX to set the gateway address: nx_ip_gateway_address_set(..), is there a method to get the current gateway address?
View ArticleForum Post: RE: Getting Gateway Address Using NetX
Hi Nate, Are you using DHCP client to get the IP address? If so you can use nx_dhcp_user_option_retrieve() with NX_DHCP_OPTION_GATEWAYS to get the IP address of the gateway and NX_DHCP_OPTION_DNS_SVR...
View ArticleBlog Post: Transitioning to ThreadX: How to Size the Stack for a Thread
In the last post, we discussed how a thread is a semi-independent program and saw how every thread has a Thread Control Block (TCB) associated with it. The TCB allows a developer to configure how a...
View ArticleForum Post: RE: S7G2-DK Touch
Hi Karol, The pins are configured as n-channel open drain and fast-mode for I2C transmission. Same result. I put some debug statements right before "gx_system_event_send(&gxe)" is called. Here are...
View ArticleForum Post: RE: Getting Gateway Address Using NetX
Hi Nate, You can get the gateway address simply by g_ip0->nx_ip_gateway_address (ULONG), where g_ip0 is your NetX IP instance. Regards, adboc
View ArticleForum Post: Change fx default working directory
Hello, i wonder how to change the fx default directory. Looking for files with "fx_directory_first_entry_find" in the root directory is no problem. Now i need to search in a different folder. Changing...
View ArticleForum Post: NetX Http Client error
Hello, I'm trying to fetch data from a server via Http. I'm using the PE-HMI1 Board and Synergy SSP 1.1.0 and NetX Http Client. My problem is that my function: status =...
View ArticleForum Post: ERROR: Failed to read license file
Hello, As I was transferring workspace for my projects to other folder. I get this error: ERROR: Failed to read license file ERROR: Failed to read license file...
View ArticleForum Post: RE: NetX Http Client error
Hi, Attached is an example project for SSP v1.1.0 for the SK-S7G2 board. Although not the same board as you are using hopefully it will help. The project pushes an HTML file to a server and then...
View ArticleForum Post: RE: ERROR: Failed to read license file
Hello Dash, How were you "transferring" the workspace? e2studio (and Eclipse in general) doesn't like moving things around as it uses a lot of relative paths in the workspace configuration (using...
View ArticleForum Post: RE: ERROR: Failed to read license file
Hello Karol, Thanks for the quick response. I will try it. Yes I transferred workspace by Exporting and Importing it to a new workspace.
View ArticleForum Post: RE: NetX Http Client error
Hello Anthony, Does your server accept HTTP/1.0 requests? How does it respond to GET requests? There's a known issue where the response has length of 0 (and this has been fixed in the later SSP...
View ArticleForum Post: RE: NetX Http Client error
Thank you ! At least inside I've got a hint on how to read the packet using "nx_packet_data_retrieve". I'm going to test this and see if anything is in memory. Anthony
View ArticleForum Post: RE: NetX Http Client error
Hello Karol, Yes it does because I see the Html packet going to my Client when I sniff the communication inbetween. I've just sent an email to my Renesas FAE to get a proper license thanks! At the...
View ArticleForum Post: RE: NetX Http Client error
You get a development/production license from the Synergy gallery. goto :- synergygallery.renesas.com/ssp and click on "create a development/production license"
View ArticleForum Post: RE: Change fx default working directory
Hi x20011, Changing the folder with "fx_directory_default_set" seems to work. I tested it with FileX on Block Media on S7G2-DK, SSP 1.2.0-b1. Please see the example attached, it prints out current...
View ArticleForum Post: RE: Change fx default working directory
Hello, If the directory exists and its name is stored in a string folder_name, than calling fx_directory_default_set(gp_media, (CHAR *) string); should be enough (where gp_media is a pointer to your...
View ArticleForum Post: RE: NetX Http Client error
Ok I've got the license, I've add nx_src, nx_http_client_src, tx_src. But I've got a bunch of error in nx_src... loads of "first defined here".. even in tx_port.h! What is wrong? any ideas ?
View Article