MaJerle / stm32fxxx-hal-libraries

Libraries for STM32F4xx and STM32F7xx built on HAL drivers from ST
MIT License
752 stars 432 forks source link

Data via mobile network #14

Closed suhasbhairav closed 7 years ago

suhasbhairav commented 8 years ago

Is it possible to transfer data using GSM2 click module on a discovery board using the HAL libraries? I was not able to find any library associated with GSM/GPRS to do the same.

MaJerle commented 8 years ago

it is possible. You need USART library to interface your GSM module.

I don't have similar library like my esp8266at.com but I'm planning to make similar like that for SIM800 or SIM900 devices.

suhasbhairav commented 8 years ago

So does the USART library work for GSM 800/900 ?

MaJerle commented 8 years ago

I don't know what knowledge you have in microcontrollers or similar, but:

  1. USART is only for communication. Sending/Receiving data.
  2. You have to know by yourself what you will send and what you wanna receive back.