mirror of
https://github.com/RfidResearchGroup/ChameleonMini.git
synced 2026-05-12 11:20:37 -07:00
Fixed indentation. Sorry, it's driving me nuts
This commit is contained in:
@@ -183,13 +183,11 @@ void TITagitstandardSetUid(ConfigurationUidType Uid)
|
||||
|
||||
void TITagitstandardFlipUid(ConfigurationUidType Uid)
|
||||
{
|
||||
|
||||
uint8_t tmp , *tail ;
|
||||
tail = Uid + ActiveConfiguration.UidSize - 1;
|
||||
while ( Uid < tail ){
|
||||
tmp = *Uid;
|
||||
*Uid++ = *tail ;
|
||||
*tail-- = tmp;
|
||||
}
|
||||
|
||||
uint8_t tmp, *tail;
|
||||
tail = Uid + ActiveConfiguration.UidSize - 1;
|
||||
while ( Uid < tail ) {
|
||||
tmp = *Uid;
|
||||
*Uid++ = *tail;
|
||||
*tail-- = tmp;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user