Forum Post: RE: I2C Question
Sorry. You answered the question. I was doing two things at once and got confused
View ArticleForum Post: RE: I2C Question
So just to clarify . In my code, I need to include the new lines : i2c_ctrl_t g_i2c_ctr2; const i2c_cfg_t g_i2c_cfg2 = { .channel = 7, .rate = I2C_RATE_STANDARD, .slave = 0x53, .addr_mode =...
View ArticleForum Post: RE: DK-S7G2 QSPI > 16MB
The current qspi driver does not support 4 byte addressing, as the SFMSAC is not getting programmed. So it stays at the default of 3, which (partially) explains what you are seeing. (you can check this...
View ArticleForum Post: RE: S7G2-DK PDC Camera with 800x480 custom LCD
Hello Draper, To work around this problem you'll need to do one or more of the following: * Change PDC capture section from .sdram to .bss, that way it uses different bus. * Change bit depth and/or...
View ArticleForum Post: RE: I2C Question
Hello, The most common solution in this case is to create a separate I2C instance for each device - you'll need to make sure only one is open at any given time. Driver code is only added once (so flash...
View ArticleForum Post: NMI managing
I want to use the NMI so I configured the P200 pin to act as NMI, but I can't find how to insert my NMI interrupt function. Any help, please?
View ArticleForum Post: RE: NMI managing
Hello Laboratori, To register callback for one of the NMI's, you'll need to use R_BSP_GroupIrqWrite() function, i.e. R_BSP_GroupIrqWrite(BSP_GRP_IRQ_NMI_PIN, nmi_pin_callback); for NMI pin, where...
View ArticleForum Post: RE: NMI managing
Thanks Karol, I added your suggestions to my code. Now the problem is that the NMI is not detected. I'm shorting P2.0 to GND in the SK-S7G2 board and nothing happens. I've searched for the correct...
View ArticleForum Post: RE: NMI managing
Hello Laboratori, I can also see that by default NMI is only enabled for stack pointer monitor (in ThreadX applications) interrupt. Set R_ICU->NMIER_b.NMIEN to 1 and the NMI should be enabled. In...
View ArticleForum Post: RE: NMI managing
Another question. How is configured the interrupt detection using the SSP, not the MCU registers? (falling edge, rising edge, digital filtering) Thanks.
View ArticleForum Post: RE: NMI managing
Hello Laboratori, NMI section of the ICU is relatively simple and SSP currently does not provide a driver layer for it. You can configure interrupt trigger and filtering using settings in...
View ArticleForum Post: RE: NMI managing
Thank you. I was asking it to be more "SSP compliant" just in case it was already implemented, but I don't fear the MCU registers :)
View ArticleHowdy all, just saying hello as I just joined the group. I'm attending the...
Howdy all, just saying hello as I just joined the group. I'm attending the IoT Workshop in Foothill Ranch today. in Renesas Synergy Platform
View ArticleForum Post: RE: NETX_DUO_Webserver can't compile on SSP v1.2.0
Hi adboc Thank you for your reply I'm sorry, I checked it now because of personal circumstances. I corrected "nx_http.h not found" by your advice with your advice. but there remains error "NXD_ADDRESS...
View ArticleForum Post: RE: NETX_DUO_Webserver can't compile on SSP v1.2.0
Hello Jo, Are you using the latest license file? If your license is older than SSP 1.1.0 then you won't be able to build NetX Duo components. Regards
View ArticleForum Post: RE: I2C Question
Hi Karol: I assume you mean creating multiple instances of the same driver, each one pointing to the same channel (7) but with a different instance name and a different slave address. The g_i2c is the...
View ArticleForum Post: RE: I2C Question
OK. I see. You need to generate a completely new thread to contain the driver/framework for the next device on the bus. Entirely not obvious.
View ArticleForum Post: RE: I2C Question
Hello, I'm not sure what you mean by "ignored during code generation". Synergy configurator should generate code for all drivers you place in your project, regardless of where they're placed. Some...
View Article