Testing Conditions on Port Bytes - ignoring certain bits?
up vote
2
down vote
favorite
Being new to testing byte and bit conditions, I feel like there has to be a better way to test for conditions/values on a byte (read from a port).
For example, I'm reading 8 bits from PORTK. I need to test for a pattern of high bits. (Say, byte value of 207 - bits 7, 6, 3, 2, 1, 0 all high.) Bits 4 and 5 I don't care about. They CAN be high, or can be low. (Using datasheet terminology, they're "X - Don't Care
".)
I could do an if, and test if the value equals 207, 223, 239, or 255, but that seems messy and like there would be an easier (and cleaner to read) way.
Edit to add: I've looked at Bit Operators, and .. something is telling me I should/could be using one of those. But I'm having a difficult time walking through which one would help me.
Thanks!
-Mike
arduino-mega bit
New contributor
add a comment |
up vote
2
down vote
favorite
Being new to testing byte and bit conditions, I feel like there has to be a better way to test for conditions/values on a byte (read from a port).
For example, I'm reading 8 bits from PORTK. I need to test for a pattern of high bits. (Say, byte value of 207 - bits 7, 6, 3, 2, 1, 0 all high.) Bits 4 and 5 I don't care about. They CAN be high, or can be low. (Using datasheet terminology, they're "X - Don't Care
".)
I could do an if, and test if the value equals 207, 223, 239, or 255, but that seems messy and like there would be an easier (and cleaner to read) way.
Edit to add: I've looked at Bit Operators, and .. something is telling me I should/could be using one of those. But I'm having a difficult time walking through which one would help me.
Thanks!
-Mike
arduino-mega bit
New contributor
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
Being new to testing byte and bit conditions, I feel like there has to be a better way to test for conditions/values on a byte (read from a port).
For example, I'm reading 8 bits from PORTK. I need to test for a pattern of high bits. (Say, byte value of 207 - bits 7, 6, 3, 2, 1, 0 all high.) Bits 4 and 5 I don't care about. They CAN be high, or can be low. (Using datasheet terminology, they're "X - Don't Care
".)
I could do an if, and test if the value equals 207, 223, 239, or 255, but that seems messy and like there would be an easier (and cleaner to read) way.
Edit to add: I've looked at Bit Operators, and .. something is telling me I should/could be using one of those. But I'm having a difficult time walking through which one would help me.
Thanks!
-Mike
arduino-mega bit
New contributor
Being new to testing byte and bit conditions, I feel like there has to be a better way to test for conditions/values on a byte (read from a port).
For example, I'm reading 8 bits from PORTK. I need to test for a pattern of high bits. (Say, byte value of 207 - bits 7, 6, 3, 2, 1, 0 all high.) Bits 4 and 5 I don't care about. They CAN be high, or can be low. (Using datasheet terminology, they're "X - Don't Care
".)
I could do an if, and test if the value equals 207, 223, 239, or 255, but that seems messy and like there would be an easier (and cleaner to read) way.
Edit to add: I've looked at Bit Operators, and .. something is telling me I should/could be using one of those. But I'm having a difficult time walking through which one would help me.
Thanks!
-Mike
arduino-mega bit
arduino-mega bit
New contributor
New contributor
New contributor
asked 3 hours ago
Coyttl
133
133
New contributor
New contributor
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
4
down vote
accepted
You need to use boolean arithmetic. Use the AND
operator (&
) to combine the incoming value AND the "mask" value (the value of the bits you do care about) and see if it equals the mask bit:
byte wanted = 0b11001110; // 207
byte incoming = 223; // for example 11011111
if ((wanted & incoming) == wanted) {
// whatever
}
The AND operator compares each bit of the bytes in turn. If they are BOTH 1 then the result is 1. Otherwise the result is 0. So the above gives:
wanted: 11001110
incoming: 11011111
AND: 11001110
And the result matches "wanted". If you had some other value for incoming it could look like this:
wanted: 11001110
incoming: 01011011
AND: 01001010
And you can see that the result doesn't match.
AH! Okay, that makes sense - I would want my 'mask' value to have bits set to '1' I care about, and '0' I don't. This would effectively force the 'don't care' bits to 0.
– Coyttl
12 mins ago
add a comment |
up vote
0
down vote
There are ways to mask off the don't care bits.
Say your example, 0b11xx1111.
Then
incomingByte = Serial.read();
incomingByte = incomingByte || 0b00110000; // make 4, 5 high
if (incomingByte = 0b11111111){
// got all 1s, do something
}
else {
// some 0s received, do something else
}
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
You need to use boolean arithmetic. Use the AND
operator (&
) to combine the incoming value AND the "mask" value (the value of the bits you do care about) and see if it equals the mask bit:
byte wanted = 0b11001110; // 207
byte incoming = 223; // for example 11011111
if ((wanted & incoming) == wanted) {
// whatever
}
The AND operator compares each bit of the bytes in turn. If they are BOTH 1 then the result is 1. Otherwise the result is 0. So the above gives:
wanted: 11001110
incoming: 11011111
AND: 11001110
And the result matches "wanted". If you had some other value for incoming it could look like this:
wanted: 11001110
incoming: 01011011
AND: 01001010
And you can see that the result doesn't match.
AH! Okay, that makes sense - I would want my 'mask' value to have bits set to '1' I care about, and '0' I don't. This would effectively force the 'don't care' bits to 0.
– Coyttl
12 mins ago
add a comment |
up vote
4
down vote
accepted
You need to use boolean arithmetic. Use the AND
operator (&
) to combine the incoming value AND the "mask" value (the value of the bits you do care about) and see if it equals the mask bit:
byte wanted = 0b11001110; // 207
byte incoming = 223; // for example 11011111
if ((wanted & incoming) == wanted) {
// whatever
}
The AND operator compares each bit of the bytes in turn. If they are BOTH 1 then the result is 1. Otherwise the result is 0. So the above gives:
wanted: 11001110
incoming: 11011111
AND: 11001110
And the result matches "wanted". If you had some other value for incoming it could look like this:
wanted: 11001110
incoming: 01011011
AND: 01001010
And you can see that the result doesn't match.
AH! Okay, that makes sense - I would want my 'mask' value to have bits set to '1' I care about, and '0' I don't. This would effectively force the 'don't care' bits to 0.
– Coyttl
12 mins ago
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
You need to use boolean arithmetic. Use the AND
operator (&
) to combine the incoming value AND the "mask" value (the value of the bits you do care about) and see if it equals the mask bit:
byte wanted = 0b11001110; // 207
byte incoming = 223; // for example 11011111
if ((wanted & incoming) == wanted) {
// whatever
}
The AND operator compares each bit of the bytes in turn. If they are BOTH 1 then the result is 1. Otherwise the result is 0. So the above gives:
wanted: 11001110
incoming: 11011111
AND: 11001110
And the result matches "wanted". If you had some other value for incoming it could look like this:
wanted: 11001110
incoming: 01011011
AND: 01001010
And you can see that the result doesn't match.
You need to use boolean arithmetic. Use the AND
operator (&
) to combine the incoming value AND the "mask" value (the value of the bits you do care about) and see if it equals the mask bit:
byte wanted = 0b11001110; // 207
byte incoming = 223; // for example 11011111
if ((wanted & incoming) == wanted) {
// whatever
}
The AND operator compares each bit of the bytes in turn. If they are BOTH 1 then the result is 1. Otherwise the result is 0. So the above gives:
wanted: 11001110
incoming: 11011111
AND: 11001110
And the result matches "wanted". If you had some other value for incoming it could look like this:
wanted: 11001110
incoming: 01011011
AND: 01001010
And you can see that the result doesn't match.
answered 2 hours ago
Majenko♦
65.8k42874
65.8k42874
AH! Okay, that makes sense - I would want my 'mask' value to have bits set to '1' I care about, and '0' I don't. This would effectively force the 'don't care' bits to 0.
– Coyttl
12 mins ago
add a comment |
AH! Okay, that makes sense - I would want my 'mask' value to have bits set to '1' I care about, and '0' I don't. This would effectively force the 'don't care' bits to 0.
– Coyttl
12 mins ago
AH! Okay, that makes sense - I would want my 'mask' value to have bits set to '1' I care about, and '0' I don't. This would effectively force the 'don't care' bits to 0.
– Coyttl
12 mins ago
AH! Okay, that makes sense - I would want my 'mask' value to have bits set to '1' I care about, and '0' I don't. This would effectively force the 'don't care' bits to 0.
– Coyttl
12 mins ago
add a comment |
up vote
0
down vote
There are ways to mask off the don't care bits.
Say your example, 0b11xx1111.
Then
incomingByte = Serial.read();
incomingByte = incomingByte || 0b00110000; // make 4, 5 high
if (incomingByte = 0b11111111){
// got all 1s, do something
}
else {
// some 0s received, do something else
}
add a comment |
up vote
0
down vote
There are ways to mask off the don't care bits.
Say your example, 0b11xx1111.
Then
incomingByte = Serial.read();
incomingByte = incomingByte || 0b00110000; // make 4, 5 high
if (incomingByte = 0b11111111){
// got all 1s, do something
}
else {
// some 0s received, do something else
}
add a comment |
up vote
0
down vote
up vote
0
down vote
There are ways to mask off the don't care bits.
Say your example, 0b11xx1111.
Then
incomingByte = Serial.read();
incomingByte = incomingByte || 0b00110000; // make 4, 5 high
if (incomingByte = 0b11111111){
// got all 1s, do something
}
else {
// some 0s received, do something else
}
There are ways to mask off the don't care bits.
Say your example, 0b11xx1111.
Then
incomingByte = Serial.read();
incomingByte = incomingByte || 0b00110000; // make 4, 5 high
if (incomingByte = 0b11111111){
// got all 1s, do something
}
else {
// some 0s received, do something else
}
answered 51 mins ago
CrossRoads
9437
9437
add a comment |
add a comment |
Coyttl is a new contributor. Be nice, and check out our Code of Conduct.
Coyttl is a new contributor. Be nice, and check out our Code of Conduct.
Coyttl is a new contributor. Be nice, and check out our Code of Conduct.
Coyttl is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Arduino Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2farduino.stackexchange.com%2fquestions%2f58701%2ftesting-conditions-on-port-bytes-ignoring-certain-bits%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown