setMem8/16 aw fixed
This commit is contained in:
parent
745ea8a00a
commit
14492b0bbe
191 changed files with 6 additions and 14420 deletions
|
@ -471,7 +471,7 @@ void B15F::setMem8(volatile uint8_t* adr, uint8_t val)
|
|||
|
||||
uint8_t aw;
|
||||
usart.receive(&aw, 0, sizeof(aw));
|
||||
assertCode(aw, MSG_OK);
|
||||
assertCode(aw, val);
|
||||
}
|
||||
|
||||
uint8_t B15F::getMem8(volatile uint8_t* adr)
|
||||
|
@ -511,7 +511,7 @@ void B15F::setMem16(volatile uint16_t* adr, uint16_t val)
|
|||
|
||||
uint16_t aw;
|
||||
usart.receive(reinterpret_cast<uint8_t *>(&aw), 0, sizeof(aw));
|
||||
assertCode(aw, MSG_OK);
|
||||
assertCode(aw, val);
|
||||
}
|
||||
|
||||
uint16_t B15F::getMem16(volatile uint16_t* adr)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue