Forum Post: RE: Getting TraceX to run 1.2.0Beta1
Hello, Did you try the SSP v.1.1.3? Does it have the the same issue with absence of RTOS entry?
View ArticleForum Post: RE: Getting TraceX to run 1.2.0Beta1
should also mention that I'm using e2 5.3.0.023
View ArticleForum Post: RE: Networking on the DK-S7G2
Hi Chris, You should add: nx_ip_interface_status_check (&g_ip0, 0, NX_IP_INITIALIZE_DONE, &g_ip0_actual_status, NX_WAIT_FOREVER); after your nx_tcp_enable() call to make sure that the stack has...
View ArticleForum Post: RE: Getting TraceX to run 1.2.0Beta1
In SSP 1.2 you can add the TX source by adding the module: X-Ware>ThreadX>ThreadX Source to the HAL/Common thread and then setting the Event Trace property to Enabled. -Gary
View ArticleForum Post: RE: Connecting to cloud server socket example
Hi Karol, So when using the nx_http_client_create, nx_http_client_put_start and so on to send a packet to a server how do you define the port number? Or is it fixed at 80 when using the http client...
View ArticleForum Post: RE: Connecting to cloud server socket example
Hi Matt, The port number is defined in nx_http_client.h and you can edit this line and change it. #define NX_HTTP_SERVER_PORT 80 /* Port for HTTP server */ The trick is now to prevent this file from...
View ArticleForum Post: RE: Connecting to cloud server socket example
Matt, I forget to mention to add the NetX source & ThreadX source to you project so that the prebuild libraries won't be used. -Gary
View ArticleForum Post: RE: Getting TraceX to run 1.2.0Beta1
Hello, Are you in the HAL/Common layer when trying to add ThreadX Source? You'll also need to have at least one additional thread as this activates ThreadX. Regards
View ArticleForum Post: MJPEG
Hi The jpeg decoder can be used for MJPGEG on the S7 controllers Has anyone experience with playing movies ( from SD card?) Dig
View ArticleForum Post: Integrity check of a .dat file stored on eMMC
Hi, In my S7 application I am dealing with a file *.dat that is stored in the eMMC (I'm using FileX). At the startup, before reading the content of that file, I need to perform a sort of data integrity...
View ArticleForum Post: RE: MJPEG
Hello Dig, "MJPEG" doesn't exist as a standard and hence the output will be completely different from one encoder to another. I've experimented with this in the past but I wasn't able to find an...
View ArticleForum Post: RE: Integrity check of a .dat file stored on eMMC
Hello Laser, You can use CRC driver to compute the checksum for your file and compare with the checksum stored after the file was created. For example, if your file is called my_data.dat, then your...
View ArticleForum Post: RE: Integrity check of a .dat file stored on eMMC
Thanks Karol. I've added a new CRC_driver Thread to my configurator, and, inside it, a CRC driver on r-crc block. In the "new_thread_crc_entry.c" generated by the ISDE I added an open CRC instance and,...
View ArticleForum Post: RE: Getting TraceX to run 1.2.0Beta1
oh, OK, I see that the menu stuff has changed for 1.2 over the documentation which is at 1.1.... SO this grabs from X-Ware rather than in the documented framework->RTOS path. My bad... should have...
View ArticleForum Post: RE: Integrity check of a .dat file stored on eMMC
Hello Laser, Since your data resides on the block media, you'll need to read it in chunks and pass it into CRC as you go along. Consider the following solution: 1. Open media. 2. Open the .crc file and...
View ArticleForum Post: Getting it all to fit in an A3S7 part
Using an S3A7 part with 196K RAM (that's a lot in my world) I've got a project that needs GUIX (and touch screen support). GUIX like to have a frame buffer for this 320X240 display so that's on the...
View ArticleForum Post: RE: Getting it all to fit in an A3S7 part
Hello, If your display is 320x240 (i.e. landscape) then your frame buffer should be no bigger than 150kB at 16bpp. If you're using SSP 1.2.0-b.1, you can switch to CLUT8 (i.e. 8bpp w/palette) mode by...
View ArticleForum Post: RE: Integrity check of a .dat file stored on eMMC
From who is created (and where) the .crc file? Does it contains a proviously calculated value for the file.dat itself? Is there a sample code that expicits the sequence you described above? Thank you!
View ArticleForum Post: RE: Connecting to cloud server socket example
Hi Gary, Ok, Ill give that a shot. The read only property should then prevent the SSC from overwriting the .h file sufficiently. On a repeating write to the remote server port, Im guessing I need to...
View Article