2018-03-01 07:06 AM
Hello, please i would know if ST provides customizable GPS processor or customizable GSM processor.
Thank you.
Note: this post was migrated and contained many threaded conversations, some content may be missing.2018-03-02 06:23 AM
Some modems permit scripting, or application code to run in them.
Some Telit modems provide for Python scripting, the ones I'm most familiar with only supported integers and ran rather slowly, as user code is very low priority. User application code can also complicate certification issues.
The scripting doesn't tend to be consistent across a range of devices, so I would recommend a simple Cortex-M0 micro to manage things. If you use an STM32F4 there are Micro Python builds
2018-03-02 06:26 AM
Thank you. Which IDE can I use to programm a cortex M0?
2018-03-02 08:28 AM
Free KEIL IDE, Free TRUE STUDIO and many
If you want to use STM32CubeMX to generate app skeleton (drivers) just install it to see what IDE is supported.
See details here:
2018-03-02 08:32 AM
Thank you so much. In which language can I programm cortex M0?
2018-03-02 08:37 AM
Assembler, C.
Usually M0 have limited amount of SRAM so interpreted languages (actually interpreter) cannot be ran on them to use scripting languages like python or javascript.
2018-03-02 08:41 AM
Thank you so much.Which cortex is able to run python or javascript?