Questions tagged [pdu]

Protocol Data Unit. Also know as Concatenated SMS, it is a way to extend SMS messages beyond the usual 160 character data limit.

In the cellular phone industry, mobile phones and their networks sometimes support concatenated short message service (or concatenated SMS) to overcome the limitation on the number of characters that can be sent in a single SMS text message transmission (which is usually 160). Using this method, long messages are split into smaller messages by the sending device and recombined at the receiving end. Each message is then billed separately. When the feature works properly, it is nearly transparent to the user, appearing as a single long text message.

http://en.wikipedia.org/wiki/Concatenated_SMS

117 questions
1
vote
1 answer

Does the pdu of Delivery Intent contain the phone number of person to whom SMS was send?

I am trying to find out the phone number of the person to whom SMS was send from the PDU of Intent in the onReceive() of delivery broadcast receiver like this @Override public void onReceive(Context context, Intent intent) { ThizLog.d(TAG,…
Gaurav Agarwal
  • 18,754
  • 29
  • 105
  • 166
1
vote
2 answers

Python - telnet - automation APC PDU

I am attempting to automation turning off connected devices to an APC PDU using python's built in telnet functionality. I believe I am able to enter in the username and password, but I cannot proceed after that. My code is as follows: …
Parth
  • 1,226
  • 7
  • 28
  • 49
0
votes
1 answer

Send concatenate sms with PDU format with iphone programmatically

is there anyway to send concatenated sms in PDU format in iPhone programmatically? AFAIK android is able to do it. please advice, really need this things clear. Thanks.
dejoong
  • 2,213
  • 5
  • 25
  • 24
0
votes
0 answers

Receiving "security service 3 error parsing ScopedPDU" in trap with AES-256 as priv protocol

I am trying to receive pysnmp trap message with SHA/MD5 and AES-256. I can receive AES-128 trap but I am unable to log AES-256 priv traps. Here is the error for each PDU generated in snmptrapd.log NET-SNMP version 5.9.3 security service 3 error…
Shivam Rai
  • 21
  • 4
0
votes
1 answer

How to calculate the power consumption in kwh using a prometheus query

I have this Prometheus query that i am using to calculate the power consumption of apc PDUs in KWH, sum(sum_over_time((rPDU2DeviceStatusPower_gauge{site=~"$site"})[$__range] /100 ) /…
Sarahack
  • 1
  • 1
0
votes
0 answers

How to detect ECU's NM Messages in CAN remote wakeup?

I am trying to implement the remote wakeup scenario in CAN network with Infotainment ECU. I am currently referring this AUTOSAR Network management document for the…
tech_123
  • 90
  • 1
  • 10
0
votes
1 answer

How to Wakeup from Sleep during CAN network state transition?

I am trying to understand the CAN network management of AUTOSAR. I am trying to sleep the ECU if there are no CAN message received during IGN cycle. I am blocking the CAN transmission and reception during this stage. Now suppose AUTOSAR NM message…
user2986042
  • 1,098
  • 2
  • 16
  • 37
0
votes
1 answer

Converting special characters into 7 bit data for a PDU string in C#

I'm trying to create a PDU encoder which requires me to: Convert each char in a string into an ASCII value Convert the ASCII value into 7-bit binary Using this method - Converting 7-bit into 8 bit. I'm doing this in a function by taking the first…
Daniel Olsen
  • 1,020
  • 2
  • 15
  • 27
0
votes
1 answer

Video MMS from wap downloading as .qcp and .jpeg

I've sent a 3gp video as an MMS, testing the ability to download it from a WAP server. When I attempt to download it from the server it comes in as 2 separate parts. One part is a jpeg and the other is a qcp audio file. If I sent it to the WAP…
Noah Seidman
  • 4,359
  • 5
  • 26
  • 28
0
votes
1 answer

How to filter CAN messages in Autosar?

I am new to AUTOSAR com module. I would like to perform some scenario to check specific messages in CAN FD. Here I want to block all the CAN FD messages except one message (eg: ID: 0x22) during some event occurred. My idea is to loop all the CAN FD…
user2986042
  • 1,098
  • 2
  • 16
  • 37
0
votes
3 answers

IPDU transmission from PDUR to specific bus interface

I am totally new to autosar and while going through the documents i have a doubt So, when PDUR recieves signal from upper layer how will it seggregate and send them to specific bus interface module say CANIF, LINIF. How will it get to know which…
TfJ
  • 1
0
votes
1 answer

Autosar - pdur - module responsible to trigger event type pdu

Can someone explain which module is responsible to trigger event type pdu?
0
votes
1 answer

How to change from PDU to text mode in Android?

The SMS of the Android send the message in PDU format. Is there a way to send SMS in text mode?
max
  • 1
  • 1
0
votes
1 answer

snmpget returns successfully, yet snmpset claims the same OID does not exist

I'm working with a CyberPower PDU: https://www.cyberpowersystems.com/product/pdu/switched-ats/pdu15swhviec12atnet/ According to snmpwalk -v1 -m CyberPower_MIB_v2.9.MIB -c public 10.42.0.2 iso.3.6.1.4.1.3808, the management card model is RMCARD205…
Charles
  • 953
  • 1
  • 8
  • 19
0
votes
1 answer

Issue generating unicode PDU message 16bit binary

I am using a PDU generator I found from github and everything works fine when generating simple 7bit character messages. The issue is that I want to send Unicode characters in 16bit mode and I have to input a char message of hex values in UTF-16BE…
Nv9zEs
  • 5
  • 2