Expose ISO jumper state over USB.

This commit is contained in:
László Monda
2016-10-20 00:14:01 +02:00
parent 7a6e5523fb
commit f961260443
9 changed files with 72 additions and 1 deletions

View File

@@ -6,6 +6,7 @@
#include "fsl_i2c.h"
#include "fsl_clock.h"
#include "i2c.h"
#include "iso_jumper.h"
void InitI2c() {
port_pin_config_t pinConfig = {
@@ -41,5 +42,6 @@ void InitPeripherials(void)
{
InitLedDriver();
InitTestLed();
InitIsoJumper();
InitI2c();
}