Search found 5 matches

by katte82
Tue Jun 08, 2021 8:35 pm
Forum: General Discussion and Questions
Topic: status of IP connectivity GSM/mobile modems (i.e. sim800L)
Replies: 1
Views: 1591

Re: status of IP connectivity GSM/mobile modems (i.e. sim800L)

I've recently developed a board with an esp32 and a simcom modem (i don't remember the exact code), with micropython and PPP. I've connected the simcom with a uart present on the esp32. This is my code. I've not had any problem and all works like a charm. from machine import UART import time import ...
by katte82
Tue Jun 08, 2021 8:26 pm
Forum: General Discussion and Questions
Topic: [SOLVED] Is it safe to not do firmware updates?
Replies: 2
Views: 2380

Re: Is it safe to not do firmware updates?

In short, no.
You can do it, but it's not professional.
What will you do if google for some reason changes its API?
by katte82
Tue Jun 08, 2021 7:30 pm
Forum: Development of MicroPython
Topic: IDE for micropython development
Replies: 2
Views: 2451

Re: IDE for micropython development

Thanks for the advice.
To write python code I already use pyCharm, ide which I love.
I am looking for a C / C ++ ide, or a standard way for write / debug the code of micropython and perform ports of microprocessors not yet present in the main branch.
by katte82
Tue Jun 08, 2021 2:58 pm
Forum: Development of MicroPython
Topic: IDE for micropython development
Replies: 2
Views: 2451

IDE for micropython development

HI all. I'm a firmware developer with a big experience in C / C++ programming of microprocessor like stm32, nrf and esp. In general I use software like the Keil IDE for debug my code directly on the device. There is a standard way or something like a standard ide for contribute in the develop and th...
by katte82
Tue Jun 08, 2021 2:46 pm
Forum: Other Boards
Topic: nrf51822 error in ble.enable
Replies: 2
Views: 2286

Re: nrf51822 error in ble.enable

I've found the same issue. It seems to hang in this call of the file ble_drv.c // set up security mode ble_gap_conn_params_t gap_conn_params; ble_gap_conn_sec_mode_t sec_mode; BLE_GAP_CONN_SEC_MODE_SET_OPEN(&sec_mode); const char device_name[] = "micr"; if ((err_code = sd_ble_gap_device_name_set(&se...