cancel
Showing results for 
Search instead for 
Did you mean: 

Customizable GPS module

Ariel kamni
Associate II
Posted on March 01, 2018 at 16:06

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.
15 REPLIES 15
Posted on March 02, 2018 at 14:23

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

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
Posted on March 02, 2018 at 14:26

Thank you. Which IDE can I use to programm a cortex M0?

Posted on March 02, 2018 at 16:28

Free KEIL IDE, Free TRUE STUDIO and many

http://www.st.com/en/development-tools/stm32-software-development-tools.html?querycriteria=productId=SC2106

 

If you want to use STM32CubeMX to generate app skeleton (drivers) just install it to see what IDE is supported.

See details here:

http://www.st.com/en/development-tools/stm32cubemx.html

 
Posted on March 02, 2018 at 16:32

Thank you so much. In which language can I programm cortex M0?

Posted on March 02, 2018 at 16:37

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.

Posted on March 02, 2018 at 16:41

Thank you so much.Which cortex is able to run python or javascript?