Member | Action | Date |
---|---|---|
|
Selected an answer for
Build all configurations
Hi Damon, Yes there is, but as is mentioned in other threads, depending on the SDK (wireless protocol) being used Simplicity Studio was not designed for multiple build configurations and so the support for it is not complete. If you right click the project folder and select [Build Configurations] > [Build All] it will build all of the configurations in the project. For Bluetooth and other Project Configurator (.slcp file) based projects, you must first make each build configuration active and then open the .slcp file and do a [Force Generation]. If that is done for each build configuration then that configuration will build successfully and the Build All does build all of the configurations. Note the Eclipse Build Set functionality is very powerful ([Project] > [Build Working Set] > [Select Working Set] to get started). In a working set you can select the projects to include in the set and which build configurations for those projects. So you could include all of the build configurations or you could have a "Debug" working set that only included all of the debug configurations from the selected projects. Then [Project] > [Build Working Set] will build all of the configurations in that set. I hope this information is helpful. Thank you, jpitt |
1 day ago |
|
Replied
to
Build all configurations
Thanks jpit -- I somehow missed [Build Configurations] > [Build All]! I will look into Build Sets. |
1 day ago |
|
Posted
Build all configurations on
Simplicity Studio Forum
Using SV5.1.1.0 is there a command or menu item to build all the configurations in a Project?
Show more
|
2 days ago |
|
Replied
to
Decoupling pin and GPIO pin
Thanks Delu -- that was the information I needed.
Show more
|
9 days ago |
|
Replied
to
Decoupling pin and GPIO pin
GG11B4xx pin-out: GG11B8xx pin-out: |
10 days ago |
|
Replied
to
Decoupling pin and GPIO pin
T he EFM32GG11B8xx-GQ100 and EFM32GG11B4xx-GQ100 have the same footprint (QFP100) but slightly different pin-outs. I am trying to make a PCB that will accept either part with suitable zero-ohm links. On the GG11B4xx, Pin 59 = DECOUPLE and Pin 60 = PE0 On the GG11B8xx, PIN 59 = VSS and Pin 60 = DECOUPLE I can connect Pin 59 to VSS or DECOUPLE with a zero-ohm link, but can I leave Pin 60 on the GG11B4xx connected to DECOUPLE, to save me one link? |
11 days ago |
|
Posted
Decoupling pin and GPIO pin on
32-bit MCU - Microcontroller Forum
I am laying out a PCB to support both the EFM32GG11B8xx-GQ100 and EFM32GG11B4xx-GQ100 parts. Will there be a problem if the DECOUPLE pin is connected to a GPIO? I intend to set the GPIO Pin Mode to DISABLED. Will this work? |
12 days ago |
|
Replied
to
Start address at specified address
Hi John, This is what I came up with:
It's similar to yours, but I place all the code in the Bootloader page by setting FLASH (rx) : ORIGIN = 0x0FE10000, LENGTH = 0x8000. This is a stand-alone project, just for the Bootloader, so I don't need or want code anywhere except the BL page. |
37 days ago |
|
Replied
to
Start address at specified address
John, I obviously wasn't clear in my post... I know that the the first instruction executed is at 0x0FE10000, and the difference between that and the vector table. I am trying to ensure that the linker places the very first instruction at that address. I have located the vector table in RAM, and the startup code sets VTOR to point to it. The above code seems to work. In Debug mode, the very first highlighted instruction at 0x0FE10000 is:
and the code at SystemInit is:
...which is what I wanted. I was just checking that there weren't any hidden "gotchas" in this approach. |
38 days ago |
|
Replied
to
Start address at specified address
I think this works:
This puts the .text (i.e. code) from the Reset_Handler right at the beginning of the code section. Are there any problems with this approach? |
43 days ago |