Forum Post: RE: Generated Code with too many warnings
[quote user="adboc"]Hi Mad River, These warnings come from compilation or static analysis? Regards, adboc [/quote] Hi adboc, These warnings came from compilation (when I click in the "hammer button" to...
View ArticleForum Post: RE: S7 Bootloader question
Hi Karol, you mean the "Enable Graphic Accelerator shown below? The JPEG option should become "None"? Also, the D/AVE 2D Drivier in the configurator has to be deleted, right?
View ArticleForum Post: RE: S7 Bootloader question
Hello Laser, "Enable Graphic Accelerator" is the right option for D/AVE2D - it should be disabled. Once disabled in GUIX Studio, settings in the configured are no longer relevant for D/AVE2D (you can...
View ArticleForum Post: RE: S7 Bootloader question
I unchecked the "Enable Graphic Accelerator" choice, but the build always fails. Am I missing something? Thank you.
View ArticleForum Post: RE: Generated Code with too many warnings
As I don't intent to modify the generated code, I don't care about the warnings related to it. My fear is to miss some warnings related to my own code. Is there a way to tell the compiler to only show...
View ArticleForum Post: RE: S7 Bootloader question
Hello Laser, Your screenshots are only thumbnail size so I can't see exactly what build problem you're seeing. Since you removed D/AVE2D from Synergy Configuration also, you'll need to make sure it's...
View ArticleForum Post: RE: Generated Code with too many warnings
Mad River, I clear out the warnings & errors on the problems tab after I have done a build. Then I rebuild just my files to see any warnings in them. You can also see warnings in you code by...
View ArticleForum Post: RE: Generated Code with too many warnings
Hi Gary, Thank you for the tip. Best regards.
View ArticleForum Post: RE: Web server with usb mass storage class in 1.2.0
Hi adboc, That explains a few things. So as long as I have basically a redefined of the callback anywhere in the code the linker connects it instead of the weak one. Any further ideas at this point on...
View ArticleForum Post: RE: AES crypto API
Hi Angler84. This is a desired behaviour. You are probably using CBC mode, which is a default one for AES encryprion is SSP (you can change it in configurator). In this mode, a plain text is XORed with...
View ArticleForum Post: RE: S7 Bootloader question
Thats true! I forgot to mention that I work with a 90° rotated font on that project. Regards
View ArticleForum Post: RE: AES crypto API
Thank you very much Jakub! I've looked at the AES documentation but I've completly forgotten the CBC mode! Your link is very useful. 1. ok! 2. So actually one can always use the encrypt() API only if...
View ArticleForum Post: RE: Change ETH MAC address at startup
Hi Martin, If you've got this warning, it's likely that the callback will never be used. Can you ensure that 'setmac' declaration is present in src/synergy_gen/common_data.c? Regards, adboc
View ArticleForum Post: RE: Change ETH MAC address at startup
Hi adboc, the 'setmac' declaration is present. #ifndef setmac void setmac(nx_mac_address_t *p_mac_config); #endif It will be inserted automaticallay when i define the callback method in the synergy...
View ArticleForum Post: BUS behaviour and drivers for it
I've got a project that derives from a Renasas project running on the S3 dev kit. That dev kit uses a Newhaven display on BUS0. Coincidentally (and thankfully) that's the same display we wanted to use...
View ArticleForum Post: RE: BUS behaviour and drivers for it
Hi rjl, The S5D9 has a SDRAM controller and there may be conflicts between the chip select you are using (CS0) and that. I would move the CS and make the associated changes to the LCD CMD addresses in...
View ArticleForum Post: RE: BUS behaviour and drivers for it
Hmm... I'd rather not move that CS0 at this point as that'd be a board edit to do it. Is the S7 BUS peripheral like the S5 one then? This S5 one appears to be a lot more extensive than the S3 one. I...
View ArticleBlog Post: Transitioning to ThreadX: Mutexes
In this series, we are currently examining the different objects that exist within ThreadX to help developers synchronize events, tasks and move data around their applications. In this post, we are...
View ArticleBlog Post: Transitioning to ThreadX: Event Flags
Thread synchronization is typically done using semaphores and message queues. Developers often overlook a very efficient method for synchronizing task which is the event flag. In this post, we will...
View Article