├── .github └── workflows │ └── go.yml ├── Bearer.go ├── Call.go ├── LICENSE ├── Modem.go ├── Modem3gpp.go ├── ModemCdma.go ├── ModemFirmware.go ├── ModemLocation.go ├── ModemManager.go ├── ModemMessaging.go ├── ModemOma.go ├── ModemSignal.go ├── ModemSimple.go ├── ModemTime.go ├── ModemUssd.go ├── ModemVoice.go ├── README.md ├── Sim.go ├── Sms.go ├── enums.go ├── examples ├── check_interfaces.go ├── test_listener.go └── test_run.go ├── go-modemmanager.png ├── go.mod ├── go.sum ├── mmbearerallowedauth_string.go ├── mmbeareripfamily_string.go ├── mmbeareripmethod_string.go ├── mmbearertype_string.go ├── mmcalldirection_string.go ├── mmcallstate_string.go ├── mmcallstatereason_string.go ├── mmcdmaactivationerror_string.go ├── mmconnectionerror_string.go ├── mmcoreerror_string.go ├── mmfirmwareimagetype_string.go ├── mmmessageerror_string.go ├── mmmobileequipmenterror_string.go ├── mmmodem3gppepsuemodeoperation_string.go ├── mmmodem3gppfacility_string.go ├── mmmodem3gppnetworkavailability_string.go ├── mmmodem3gppregistrationstate_string.go ├── mmmodem3gppsubscriptionstate_string.go ├── mmmodem3gppussdsessionstate_string.go ├── mmmodemaccesstechnology_string.go ├── mmmodemband_string.go ├── mmmodemcapability_string.go ├── mmmodemcdmaactivationstate_string.go ├── mmmodemcdmaregistrationstate_string.go ├── mmmodemcdmarmprotocol_string.go ├── mmmodemcontactsstorage_string.go ├── mmmodemfirmwareupdatemethod_string.go ├── mmmodemlocationassistancedatatype_string.go ├── mmmodemlocationsource_string.go ├── mmmodemlock_string.go ├── mmmodemmode_string.go ├── mmmodemporttype_string.go ├── mmmodempowerstate_string.go ├── mmmodemstate_string.go ├── mmmodemstatechangereason_string.go ├── mmmodemstatefailedreason_string.go ├── mmomafeature_string.go ├── mmomasessionstate_string.go ├── mmomasessionstatefailedreason_string.go ├── mmomasessiontype_string.go ├── mmserialerror_string.go ├── mmsignalpropertytype_string.go ├── mmsmscdmaservicecategory_string.go ├── mmsmscdmateleserviceid_string.go ├── mmsmsdeliverystate_string.go ├── mmsmspdutype_string.go ├── mmsmsstate_string.go ├── mmsmsstorage_string.go ├── mmsmsvaliditytype_string.go └── utils.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /Bearer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/Bearer.go -------------------------------------------------------------------------------- /Call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/Call.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/LICENSE -------------------------------------------------------------------------------- /Modem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/Modem.go -------------------------------------------------------------------------------- /Modem3gpp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/Modem3gpp.go -------------------------------------------------------------------------------- /ModemCdma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/ModemCdma.go -------------------------------------------------------------------------------- /ModemFirmware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/ModemFirmware.go -------------------------------------------------------------------------------- /ModemLocation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/ModemLocation.go -------------------------------------------------------------------------------- /ModemManager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/ModemManager.go -------------------------------------------------------------------------------- /ModemMessaging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/ModemMessaging.go -------------------------------------------------------------------------------- /ModemOma.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/ModemOma.go -------------------------------------------------------------------------------- /ModemSignal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/ModemSignal.go -------------------------------------------------------------------------------- /ModemSimple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/ModemSimple.go -------------------------------------------------------------------------------- /ModemTime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/ModemTime.go -------------------------------------------------------------------------------- /ModemUssd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/ModemUssd.go -------------------------------------------------------------------------------- /ModemVoice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/ModemVoice.go -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/README.md -------------------------------------------------------------------------------- /Sim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/Sim.go -------------------------------------------------------------------------------- /Sms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/Sms.go -------------------------------------------------------------------------------- /enums.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/enums.go -------------------------------------------------------------------------------- /examples/check_interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/examples/check_interfaces.go -------------------------------------------------------------------------------- /examples/test_listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/examples/test_listener.go -------------------------------------------------------------------------------- /examples/test_run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/examples/test_run.go -------------------------------------------------------------------------------- /go-modemmanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/go-modemmanager.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/go.sum -------------------------------------------------------------------------------- /mmbearerallowedauth_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmbearerallowedauth_string.go -------------------------------------------------------------------------------- /mmbeareripfamily_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmbeareripfamily_string.go -------------------------------------------------------------------------------- /mmbeareripmethod_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmbeareripmethod_string.go -------------------------------------------------------------------------------- /mmbearertype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmbearertype_string.go -------------------------------------------------------------------------------- /mmcalldirection_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmcalldirection_string.go -------------------------------------------------------------------------------- /mmcallstate_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmcallstate_string.go -------------------------------------------------------------------------------- /mmcallstatereason_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmcallstatereason_string.go -------------------------------------------------------------------------------- /mmcdmaactivationerror_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmcdmaactivationerror_string.go -------------------------------------------------------------------------------- /mmconnectionerror_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmconnectionerror_string.go -------------------------------------------------------------------------------- /mmcoreerror_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmcoreerror_string.go -------------------------------------------------------------------------------- /mmfirmwareimagetype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmfirmwareimagetype_string.go -------------------------------------------------------------------------------- /mmmessageerror_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmessageerror_string.go -------------------------------------------------------------------------------- /mmmobileequipmenterror_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmobileequipmenterror_string.go -------------------------------------------------------------------------------- /mmmodem3gppepsuemodeoperation_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodem3gppepsuemodeoperation_string.go -------------------------------------------------------------------------------- /mmmodem3gppfacility_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodem3gppfacility_string.go -------------------------------------------------------------------------------- /mmmodem3gppnetworkavailability_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodem3gppnetworkavailability_string.go -------------------------------------------------------------------------------- /mmmodem3gppregistrationstate_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodem3gppregistrationstate_string.go -------------------------------------------------------------------------------- /mmmodem3gppsubscriptionstate_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodem3gppsubscriptionstate_string.go -------------------------------------------------------------------------------- /mmmodem3gppussdsessionstate_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodem3gppussdsessionstate_string.go -------------------------------------------------------------------------------- /mmmodemaccesstechnology_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodemaccesstechnology_string.go -------------------------------------------------------------------------------- /mmmodemband_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodemband_string.go -------------------------------------------------------------------------------- /mmmodemcapability_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodemcapability_string.go -------------------------------------------------------------------------------- /mmmodemcdmaactivationstate_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodemcdmaactivationstate_string.go -------------------------------------------------------------------------------- /mmmodemcdmaregistrationstate_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodemcdmaregistrationstate_string.go -------------------------------------------------------------------------------- /mmmodemcdmarmprotocol_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodemcdmarmprotocol_string.go -------------------------------------------------------------------------------- /mmmodemcontactsstorage_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodemcontactsstorage_string.go -------------------------------------------------------------------------------- /mmmodemfirmwareupdatemethod_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodemfirmwareupdatemethod_string.go -------------------------------------------------------------------------------- /mmmodemlocationassistancedatatype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodemlocationassistancedatatype_string.go -------------------------------------------------------------------------------- /mmmodemlocationsource_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodemlocationsource_string.go -------------------------------------------------------------------------------- /mmmodemlock_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodemlock_string.go -------------------------------------------------------------------------------- /mmmodemmode_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodemmode_string.go -------------------------------------------------------------------------------- /mmmodemporttype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodemporttype_string.go -------------------------------------------------------------------------------- /mmmodempowerstate_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodempowerstate_string.go -------------------------------------------------------------------------------- /mmmodemstate_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodemstate_string.go -------------------------------------------------------------------------------- /mmmodemstatechangereason_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodemstatechangereason_string.go -------------------------------------------------------------------------------- /mmmodemstatefailedreason_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmmodemstatefailedreason_string.go -------------------------------------------------------------------------------- /mmomafeature_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmomafeature_string.go -------------------------------------------------------------------------------- /mmomasessionstate_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmomasessionstate_string.go -------------------------------------------------------------------------------- /mmomasessionstatefailedreason_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmomasessionstatefailedreason_string.go -------------------------------------------------------------------------------- /mmomasessiontype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmomasessiontype_string.go -------------------------------------------------------------------------------- /mmserialerror_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmserialerror_string.go -------------------------------------------------------------------------------- /mmsignalpropertytype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmsignalpropertytype_string.go -------------------------------------------------------------------------------- /mmsmscdmaservicecategory_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmsmscdmaservicecategory_string.go -------------------------------------------------------------------------------- /mmsmscdmateleserviceid_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmsmscdmateleserviceid_string.go -------------------------------------------------------------------------------- /mmsmsdeliverystate_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmsmsdeliverystate_string.go -------------------------------------------------------------------------------- /mmsmspdutype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmsmspdutype_string.go -------------------------------------------------------------------------------- /mmsmsstate_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmsmsstate_string.go -------------------------------------------------------------------------------- /mmsmsstorage_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmsmsstorage_string.go -------------------------------------------------------------------------------- /mmsmsvaliditytype_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/mmsmsvaliditytype_string.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maltegrosse/go-modemmanager/HEAD/utils.go --------------------------------------------------------------------------------