Enable HCI UART mode on boot if SS is LOW

This commit is contained in:
Sandeep Mistry
2018-07-23 13:49:04 -04:00
parent 2aed17fc1e
commit d718b1f539
4 changed files with 73 additions and 3 deletions

View File

@@ -42,3 +42,8 @@ void digitalWrite(uint32_t pin, uint32_t val)
{
gpio_set_level((gpio_num_t)pin, val);
}
int digitalRead(uint32_t pin)
{
return gpio_get_level(pin);
}