New TFT: image "inversion"
Hi,I am trying to manage a TFT with a RGB interface in my S7 synergy project. The result by now is that the image displayed is affected by an inversion: it is like if it's viewed from behind the...
View ArticleRE: Changing SPI Polarity and Phase
Hi Pete,If you use the Synergy Standalone Configurator and/or e2 Studio, then these parameters can be set by modifying the SPI Driver stack ("Threads" tab) properties named "Clock Phase" and "Clock...
View ArticleRE: Changing SPI Polarity and Phase
That would be an option iff I didn't need to change these parameters on the fly, but I'm being told that the parameters need to be changed between send a command to the device and reading data from the...
View ArticleRE: Changing SPI Polarity and Phase
Hello Pete,If you want to change these on the fly, create a new config structure (spi_cfg_t type). Use memcpy to copy original config into your structure and then modify necessary values. To apply new...
View ArticleRE: Simultaneous USB device on FS and host on HS ports
Hello Peter,USBX device and host stacks are almost fully independent of one another. In fact, on all of the Renesas S7G2 kits, host and device interfaces are hard-wired to separate USB controllers...
View ArticleRE: Simultaneous USB device on FS and host on HS ports
Karol,Thanks for the quick response with the example project.The project worked without any changes on the PE-HMI1.I was able to incorporate the implementation into the small test project I included in...
View ArticleRE: printf causes SIGTRAP exception
So, I have the linker switch in (put there by default). I have the following for hal_entry.c/* HAL-only entry function */#include "hal_data.h"#include "stdio.h"extern void...
View ArticleRE: Changing SPI Polarity and Phase
Depending on the exact circumstances you don't need to change polarity or phase on the fly.When you read the data in in a shifted way it may be possible to do a correction in software.Truncated bits...
View ArticleChanging SPI Polarity and Phase
How can I change the polarity and/or phase of a HAL SPI driver?The configuration structure is constant so I can't just change the parameters there.I'm being told that this is needed to operate a device...
View ArticleRE: printf causes SIGTRAP exception
Have you checked your system heap settings in the BSP?Make sure this is big enough when using stdlib functions like printfRegards
View Articleprintf causes SIGTRAP exception
I'm told that I should be able to use printf() in my Synergy application and that the output will redirect to the debug console in e2 studio. How do I enable that capability? Currently whenever my...
View ArticleRE: NetX Duo DHCP demo question
Hello Ian,Please, what program did you use to test the sample program? I've tested Internet Explorer, Chrome and Firefox and in all of them I must enter the IP + "index.htm" to load the page (not only...
View ArticleRE: NetX Duo DHCP demo question
(Please visit the site to view this file)Hi,I use the Chrome browser.To solve the disconnect issue the code in my_get_notify() needs to send a response header back to the browser to complete the...
View ArticleRE: printf causes SIGTRAP exception
Hello Bill,If you do printf from inside tx_application_define_user, please make sure that the "main stack" (configured in the properties on the BSP tab) is big enough. Since this code is executed...
View ArticleRE: NetX Duo DHCP demo question
Hello Laboratori,Default redirection of root entry can be done inside the GET/PUT request handler, like Ian pointed out. i.e.:static UINT app_get_request(NX_HTTP_SERVER * p_server, UINT request_type,...
View ArticleRE: NetX Duo DHCP demo question
Thank you very much, Ian and Karol, it's just what I needed.
View ArticleRE: printf causes SIGTRAP exception
for the file using printf add these statements near the top:#include "stdio.h"extern void initialise_monitor_handles(void);make sure this function is called before using printf anywhere:...
View ArticleRE: Changing SPI Polarity and Phase
I was wondering if bit shifting would work and may give it a try if all else fails.I tried to copy and change the clk_phase as you described above but I get a SSP_ERR_HW_LOCKED response to the read...
View ArticleRE: Pin configuration migration to 1.2.0.beta1
Hello Josh,Take a blank project with your custom pin config from 1.1.3 and migrate it to 1.2.0-b1. Then you can use update pincfg file in 1.2.0-b1 projects. If your e2studio installation has only SSP...
View Article