github.com/bluenviron/gomavlib/v2@v2.2.1-0.20240308101627-2c07e3da629c/pkg/dialects/pythonarraytest/enum_cellular_config_response.go (about) 1 //autogenerated:yes 2 //nolint:revive,misspell,govet,lll,dupl,gocritic 3 package pythonarraytest 4 5 import ( 6 "github.com/bluenviron/gomavlib/v2/pkg/dialects/common" 7 ) 8 9 // Possible responses from a CELLULAR_CONFIG message. 10 type CELLULAR_CONFIG_RESPONSE = common.CELLULAR_CONFIG_RESPONSE 11 12 const ( 13 // Changes accepted. 14 CELLULAR_CONFIG_RESPONSE_ACCEPTED CELLULAR_CONFIG_RESPONSE = common.CELLULAR_CONFIG_RESPONSE_ACCEPTED 15 // Invalid APN. 16 CELLULAR_CONFIG_RESPONSE_APN_ERROR CELLULAR_CONFIG_RESPONSE = common.CELLULAR_CONFIG_RESPONSE_APN_ERROR 17 // Invalid PIN. 18 CELLULAR_CONFIG_RESPONSE_PIN_ERROR CELLULAR_CONFIG_RESPONSE = common.CELLULAR_CONFIG_RESPONSE_PIN_ERROR 19 // Changes rejected. 20 CELLULAR_CONFIG_RESPONSE_REJECTED CELLULAR_CONFIG_RESPONSE = common.CELLULAR_CONFIG_RESPONSE_REJECTED 21 // PUK is required to unblock SIM card. 22 CELLULAR_CONFIG_BLOCKED_PUK_REQUIRED CELLULAR_CONFIG_RESPONSE = common.CELLULAR_CONFIG_BLOCKED_PUK_REQUIRED 23 )