Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
LPG_LTEPin_Controller.cpp
00001 #include "LPG_Config.h" 00002 #include "LPG_LTEPin_Controller.h" 00003 00004 DigitalOut PinEn_PWR(PWR_LTE); 00005 DigitalOut PinKey_LTE(KEY); 00006 DigitalOut PinRst_LTE(RST); 00007 00008 void LPG_LTEPinControl_LTEPowerOn() 00009 { 00010 PinEn_PWR = 1; 00011 PinKey_LTE = 0; 00012 PinRst_LTE = 0; 00013 wait_ms(300); 00014 PinKey_LTE = 1; 00015 wait_ms(1000); 00016 PinKey_LTE = 0; 00017 } 00018 00019
Generated on Fri Jul 22 2022 03:43:24 by
