Forum Post: RE: SPI GUIX SK S7G2
Thank you Karol, I am using exactly the same apis for spi. Do you have any sample code for that?? note - same sensor is working perfectly fine with i2c. Where I am displaying the data using i2c and...
View ArticleForum Post: RE: Changing system clock after reset via g_cgc
I wasn't aware of the R_BSP_WarmStart() function that I can override. I think using this override function should work. Thanks, Jeff
View ArticleForum Post: Setting output pin to a default value
Is there a way to have a GPIO output pin be automatically set to 1 instead of the default 0? Or preferbly, is there a way to tell Synergy to ignore a certain pin? My dilemma is that I am configuring a...
View ArticleForum Post: RE: SPI GUIX SK S7G2
/* HAL-only entry function */ #include "hal_data.h" #include #include // Buffer Size #define UART_BUFFER_SIZE 8 // Buffers uint8_t outputBuffer[UART_BUFFER_SIZE]; // Flags volatile bool...
View ArticleForum Post: RE: Setting output pin to a default value
In the next release fo the SSP (v1.2) the ability to set a default output value for a pin set as an output has been added. In the meantime could you add a pull-up to your pin and set it as an input in...
View ArticleForum Post: RE: Setting output pin to a default value
Unfortunately adding a pull-up is not an option for us in the method we are using this pin. But I'm glad to hear this option is on the list of features in SSP v1.2. Hopefully SSP v1.2 will be released...
View ArticleForum Post: RE: Setting output pin to a default value
SSP v1.2 beta is available on the gallery now if you would like to take a look at this feature.
View ArticleForum Post: RE: GUIX circular gauge needle
I don't think there is a link with USB (although it works with a breakpoint in the usb host change function from host storage example) because I have the same difficulty in a project without USB. I...
View ArticleForum Post: RE: Why the new look?
Is this annoying "Ok, got it" modal dialog going to appear forever over the button? I thought it was only for the first time a computer entered the page, but this is coming out every time.
View ArticleForum Post: RE: SPI GUIX SK S7G2
Hello, I'm not sure why you're using a QSPI driver in your project (does it serve a function outside of the code snippet you provided?). I can see that the project is a HAL-only application, however...
View ArticleForum Post: RE: Setting output pin to a default value
Hello Jeff, Alternatively, you can configure pin as an input and then in the R_BSP_WarmStart set it to output and drive it high immediately (using API or register access). Regards
View ArticleForum Post: RE: GUIX circular gauge needle
Hello, Have you tried using different pixelmap (make sure it's uncompressed, alpha enabled and forced to ARGB32)? If you're able to view the source (requires production/development license), please add...
View ArticleForum Post: RE: SPI GUIX SK S7G2
Thank you very much Karol. Actually I was working on QSPI and i just copied it and as you can see it's commented and server no purpose in my code. Here i am just SPI and UART as I am very noob to...
View ArticleForum Post: RE: GUIX circular gauge needle
Thanks a lot for your help, I found the problem and it works now ! :-D The reason is a bit stupid... The problem was in my screen initialization function, there was an old line, probably from a default...
View ArticleForum Post: RE: SPI GUIX SK S7G2
Hello, SPI communication is relatively simple, hence we don't have an application note available for it (other than the one from the User's Manual). After your SPI driver/framework is initialized using...
View ArticleForum Post: DK-S7G2 QSPI > 16MB
Hello, I have an issue with QSPI while writing (Self Programming) and reading beyond 16MB. If Im writing some data to 0x61000000, it appears on 0x60000000. Changint BSP_PRV_QSPI_NUM_ADDRESS_BYTES from...
View ArticleForum Post: S7G2-DK PDC Camera with 800x480 custom LCD
Hi, I have gotten the demo project working (s7_dk_gx_pdc_cam_1_1_3) with the S7G2-DK and included LCD. The plan is to get a custom 800x480 LCD and display a VGA camera (640x480) using GUIX and the...
View ArticleForum Post: I2C Question
I used the configurator to set up my slave address (i2c object is g_i2c). However, at one point, I need to change the address of the device I am talking to (everything else remains the same): //Step 3:...
View ArticleForum Post: RE: I2C Question
The configurator creates the g_i2c_cfg structure in flash. If you want to change something in that configuration at runtime, you need to make a copy of that structure in RAM so that you can change the...
View ArticleForum Post: RE: I2C Question
So how do I change slaves in real time? Obviously, I2C can support more than one slave. Thanks
View Article