rename bootloader to lwp3-bootloader

we will probably have DFU bootloader in the future
This commit is contained in:
David Lechner
2020-06-04 11:28:13 -05:00
committed by David Lechner
parent d873ad2520
commit c975613e1c
13 changed files with 23 additions and 18 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import { Action } from '../actions';
import {
BootloaderConnectionActionType,
BootloaderConnectionFailureReason,
} from '../actions/bootloader';
} from '../actions/lwp3-bootloader';
import { combineServices } from '.';
/**
+1 -1
View File
@@ -5,10 +5,10 @@ import { Middleware } from 'redux';
import { Action, Dispatch } from '../actions';
import { RootState } from '../reducers';
import ble from './ble';
import bootloader from './bootloader';
import editor from './editor';
import errorLog from './error-log';
import hub from './hub';
import bootloader from './lwp3-bootloader';
type Service = (
action: Action,
@@ -11,8 +11,8 @@ import {
didFailToConnect,
didReceive,
didSend,
} from '../actions/bootloader';
import { CharacteristicUUID, ServiceUUID } from '../protocols/bootloader';
} from '../actions/lwp3-bootloader';
import { CharacteristicUUID, ServiceUUID } from '../protocols/lwp3-bootloader';
import {
PolyfillBluetoothRemoteGATTCharacteristic,
polyfillBluetoothRemoteGATTCharacteristic,