2023-06-04 09:06 PM
Dear
I installed AutoDevkitstudio yesterday.As I can see I should go to this web site"hightec-rt.com/en/" and get a license but in this site there is not any form that I fill it and get a license. Pleas help me more for getting license!. Thank you
Solved! Go to Solution.
2023-06-08 01:33 AM
Thank you for your reply Arash.
Have a nice day !
-Olivier
2023-06-08 05:05 AM
Dear Olivier:
I am a beginner and I would like to work with pins and GPIOs! :))
There are many great samples about peripherals but not about GPIOs. I would like to ask that there is any example(s) about GPIOs in SPC5STUDIO WIZARD!
Thank you.
2023-06-09 12:33 AM - edited 2023-11-20 04:03 AM
Dear Arash,
in your project :"SPC56ELxx_RLA DSPI Test Application for DiscoveryPlus"
you have a GPIO configured in OUPTUT to blink a LED:
it can be easily configured using the pinmap editor:
then in your main function you have the code to call gpio driver to blink the LED:
pal_lld_clearpad(PORT_A, PA_LED5); /* LED ON. */
osalThreadDelayMilliseconds(300); /* WAIT 300 ms */
pal_lld_setpad(PORT_A, PA_LED5); /* LED OFF. */
put you mouse pointer on the function pal_lld_setpad and do <CTRL>-left click to navigate in your code.
Best Regards,
-Olivier
2023-06-09 08:10 AM
Thank you Dear Oliver
I plan to to buy a SPC57xx EVB.
I would like to know that I can use these codes with a SPC57xx family too !
2023-06-12 02:01 AM
Hello Arash,
each Family (SPC56, 57, 58) and each MCU (56D, 56P, 58EC ...) can have a different driver sample code.
When you use SPC5Studio to create or import a project for a particular MCU, the imported sample code should be in line with the particular chosen MCU.
So do not try to port a sample code from a MCU type to another one.
Best regards,
-Olivier