Forum Post: e2studio & Code Generator
Hi, I have some problem with e2studio & Code Generator: sometimes when I make some change in the Peripheral Function I can save, but sometimes I can't (the save button still remain disabled if I...
View ArticleForum Post: RE: Synergy XIP
S7G2 and S3A7 are capable of executing code from QSPI address space (ROM access mode). in SSP 1.1.0 the BSP's for the S7-SK, S7-DK and S3-DK all initialise the QSPI peripheral and QSPI Flash device to...
View ArticleForum Post: RE: e2studio & Code Generator
Hello Alberto, Could you please provide more information about the versions of software you use?
View ArticleForum Post: RE: e2studio & Code Generator
Hi Sergey, I have: e2 studio Version: 5.0.1.005 and e2studio is currently updated using Help- Check for updates Best Regards, Alberto
View ArticleForum Post: RE: e2studio & Code Generator
How often is "sometimes"? Once per hour, 10% of the time, 50%, ... ? Do you have only one project in your workspace or more than one?
View ArticleForum Post: e2studio and RH850_F1H
Hello all, I'm trying to get started with e2-studio for RH850_F1H using both cores. Have installed e2-studio 5.0.1.005. Unfortunatelly the tutorial of it (for Renesas toolchain) does not reflect what...
View ArticleForum Post: RE: FIT Flash module bug (RX64M)
Hi Architect- Unfortunately, that is a limitation of the hardware. The flash sequencer on the 64M will not allow reading and writing of data flash simultaneously. You can, however, read and write code...
View ArticleForum Post: RE: memory mapping 78KOR in CubeSuite++
The segment definitions are only accepted if these sections are used in your code somewhere. Use for example for a const definition #pragma section @@CNST MemPool1 I don't know yet about E3116 because...
View ArticleForum Post: RX630 Bootloader function in RAM
Hi all I have a simple boot loader program that calls a delay function and toggles an output pin If i locate the delay function in data memory (RAM) the program fails to execute the delay and jumps to...
View ArticleForum Post: Lockup on r_sci_i2c write() function
I am using the I2C Driver on r_sci_i2c. Everything work perfectly as long as I have the SCL line pulled up to Vcc (I am using a 10K ohm resistor). However if I remove the pullup resistor then the...
View ArticleForum Post: RE: memory mapping 78KOR in CubeSuite++
My pragma statements are: #pragma section @ECNSTL MEM_POOL1 // in the c file that is to access 0F1000H to 0F1FFFH, and #pragma section @ECNSTL MEM_POOL2 // in the c file that is to access 0F2000H to...
View ArticleForum Post: adding two doubles
Here is my code: In the compass.h file: struct sHeading { double dir; double incl; double roll; }; In the compass.c file: double sumHeadings(int headingType) { int i; double x = 0;...
View ArticleForum Post: RE: RX630 Bootloader function in RAM
Did not solve your issue, but what tool chain version are you using? When I build your project I get a warning about the .data section and then undefined functions in the linker (probably caused by...
View ArticleForum Post: Which Synergy example apps support SSP v1.1.0?
Here is a list of all Synergy example applications on the renesas.com website and which version of SSP they each support: Published Summary Website publication date Published SSP version Creating a...
View ArticleForum Post: QSPI hal driver question
Hello all, In the file r_qspi.c the erase function uses the 64KB erase block command (D8H). When trying to port a FileX driver to use this piece of memory, I think I am then forced to have 64KB...
View ArticleForum Post: RE: QSPI hal driver question
In the meantime, for anyone that wants it, if you add this code to your driver file and call it instead of the other sector erase funtion , it erases 4KB sectors instead. Not a good fix because as I...
View ArticleForum Post: RE: Problem with linker file in e2studio
Hi, If you have already studied the GNU ld script file documentation ("3 Linker Scripts"), then you have also studied "3.6.4.2 Input Section Wildcard Patterns". There is following description. `*'...
View ArticleForum Post: Difference Between I2C and IICA
Hi all, Can anyone please tell me the difference between the I2C communication protocol and IICA communication protocol,?? Thank You
View ArticleForum Post: RE: RX630 Bootloader function in RAM
Hi Kevin Thanks for the reply I am using GNURX_v14.03 in E2Studio Regards Richard
View ArticleForum Post: RE: QSPI hal driver question
Hello Bill, Since this is a clear source file, you can still make changes to it. Before you build, save this file individually and set its properties to read-only. The changes you made should stay...
View Article