Forum Post: RE: S7G2 NetX PHY address
Oh ok, I can't compile with NetX Source "ERROR NX_IP_HEADER undeclared (first use in this function) | nx_arp_dynamic_entry_set.c line 325" Well, I think the issue is different because the demo code...
View ArticleForum Post: Problems with #define TRUE -1
Hi, I am trying to port a library that is currently used in our older projects to a S3 uController. That library uses bool type and have this definitions: /** * @brief Generic 'false' boolean constant....
View ArticleForum Post: RE: Possible I2C/SPI threads interaction of some type
Hi rjl, Despite the fact that max. stack usage is a long way from the size of the stack, can you assign more memory to SPI/I2C threads? Maybe setting higher priority (i.e. lower number) for SPI thread...
View ArticleForum Post: RE: Problems with #define TRUE -1
Hi Mad River, I cannot reproduce this issue using e2 Studio, GCC toolchain and default compiler settings. Make sure, that before this declaration, TRUE macro isn't already definied. Which...
View ArticleForum Post: RE: Error Log
Hi Josh, Does the console framework work when using directly in your application (without the ssp_error_log)? Regards, adboc
View ArticleForum Post: RE: new touch controller
Hi adboc, I follow the ssp1.2 manual from page 287 correctly and be able to add custom touch driver to the configurator. However, the custom touch still not working yet. I don't even have any response...
View ArticleForum Post: RE: S7 Bootloader question
Hi, are there any update about the USB bootloader for S7? We are awaiting for a SSP release that includes that features. Thank you.
View ArticleForum Post: RE: Problems with #define TRUE -1
Hi adboc, As far I know, I am using all default. I only created a new "Blinky With ThreadX" project and tried to add the library to it. I did not change any compiler settings. I am using: e2studio...
View ArticleForum Post: RE: Problems with #define TRUE -1
Hello Mad River, This works fine on my machine, however using if against negative value is risky (coding standards recommend explicit comparisons, i.e. #if (TRUE == OPTION_2)). I also recommend...
View ArticleForum Post: What is the practical feasibility of MMF for flash update?
For my team the ability to remotely, automatically, update the flash ROMs in our products is essential. We've been doing it successfully with the Renesas H8 family for years. Now we are trying to...
View ArticleForum Post: RE: new touch controller
Hi dle, Modifying (or rather creating a new one based on the existing one) the .pack file allows you to use your custom driver in all Synergy projects. All packs should be placed in...
View ArticleForum Post: RE: Possible I2C/SPI threads interaction of some type
I had already done the main threads with larger stacks (Where TraceX says I overran it) and SPI is running at priority 0 for TX and RX (2 for error).
View ArticleForum Post: RE: Possible I2C/SPI threads interaction of some type
So there are two problems here: the first something that is causing the over run and the second the over run doing something bad. I can't fix the later. The former has something to do with this thing...
View ArticleForum Post: RE: What is the practical feasibility of MMF for flash update?
Hi tclong, The DTC or DMA can be used when the MMF is active with no problems if your are transferring between I/O to RAM or RAM to RAM. The issue is that the CPU access to flash memory is translated...
View ArticleForum Post: RE: Error Log
Yes, it works, when I send a string to the fw it appears on the Terminal. On my custom board I made a LED toggle in the ssp_error_log function to rule out any problems with the output. It never showed...
View ArticleForum Post: RE: S7G2 NetX PHY address
Hello TLHQ, You can add nxd_src component to your project (you may have to add tx_src) to debug this problem (i.e. step into nx_packet_data_append). Something goes wrong when allocating another...
View ArticleForum Post: RE: S7 Bootloader question
Hello Laser, The Flashloader Add-on Framework for Synergy is available for download since Wednesday. You can download it here: synergygallery.renesas.com/.../utility . Application examples and...
View ArticleForum Post: RE: Possible I2C/SPI threads interaction of some type
Hello rjl, Are you using SPI-driven display on your board? SK-S7 and PK-S5 use SPI only to initialize the display with correct settings for gamma, stride and interface - video data is pushed out to the...
View ArticleForum Post: RE: new touch controller
Hi, I following Karol's instruction but the sf_touch_panel_i2c.h file in my application don't generate an call to the custom touch chip that I created. and thus, my touch controller don't work, not...
View Article