Skip to content

Commit

Permalink
Revert "Support for FreeStyle Libre (retry)"
Browse files Browse the repository at this point in the history
  • Loading branch information
DorianScholz authored Sep 8, 2017
1 parent d1b4235 commit c74e7da
Show file tree
Hide file tree
Showing 25 changed files with 317 additions and 3,410 deletions.
9 changes: 1 addition & 8 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"stage-0",
"react"
],
"retainLines": true,
"plugins": ["add-module-exports"],
"env": {
"production": {
Expand All @@ -20,13 +19,7 @@
},
"test": {
"plugins": [
[ "module-resolver", {
"root": ["./app/node_modules"],
"alias": {
"node-hid": "./app/node_modules/node-hid",
"serialport": "./app/node_modules/serialport"
}
} ],
["resolver", { "resolveDirs": [ "app/node_modules" ]}],
["webpack-loaders", { "config": "webpack.config.test.js", "verbose": false }],
"babel-plugin-rewire",
["transform-define", {
Expand Down
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
app/dist/
app/main.js
node_modules
dist/
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,3 @@ coverage

_book/
web/

\.vscode/
8 changes: 0 additions & 8 deletions app/reducers/devices.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,6 @@ const devices = {
source: {type: 'device', driverId: 'AbbottFreeStyleFreedomLite'},
enabled: {mac: false, win: true}
},
abbottfreestylelibre: {
instructions: 'Plug in meter with micro-USB',
key: 'abbottfreestylelibre',
name: 'Abbott FreeStyle Libre',
showDriverLink: {linux: false, mac: false, win: false},
source: {type: 'device', driverId: 'AbbottFreeStyleLibre'},
enabled: {linux: true, mac: true, win: true}
},
bayercontournext: {
instructions: 'Plug in meter with micro-USB',
key: 'bayercontournext',
Expand Down
5 changes: 2 additions & 3 deletions docs/checklists/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
Checklists for the implementation of drivers for reading data from diabetes devices currently supported or in development.

* [Abbott FreeStyle Lite & Freedom Lite (BGM)](abbottFreeStyleLite.md)
* [Abbott FreeStyle Libre (CGM & BGM data)](abbottFreeStyleLibre.md)
* [Abbott FreeStyle (BGM)](abbottFreeStyleLite.md)
* [Abbott Precision Xtra (blood glucose & ketone meter)](abbottPrecisionXtra.md)
* [Animas Vibe (CGM data)](animasCGM.md)
* [Animas Ping and Vibe Insulin Pumps](animasPingAndVibe.md)
Expand All @@ -12,4 +11,4 @@ Checklists for the implementation of drivers for reading data from diabetes devi
* [Insulet OmniPod Insulin Delivery System](insuletOmniPod.md)
* [OneTouch VerioIQ (BGM)](oneTouchVerioIQ.md)
* [Tandem Insulin Pumps](tandem.md)
* [Tandem G4 (CGM data)](tandemCGM.md)
* [Tandem G4 (CGM data)](tandemCGM.md)
147 changes: 0 additions & 147 deletions docs/checklists/abbottFreeStyleLibre.md

This file was deleted.

4 changes: 4 additions & 0 deletions docs/checklisttemplates/CGMChecklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,8 @@ Choose one of the following:

### Known implementation issues/TODOs

Add any device-specific known issues or implementation TODOs here in checklist format.

### Known implementation issues/TODOs

*Use this space to describe device-specific known issues or implementation TODOs **not** contained in the above datatype-specific sections.*
3 changes: 0 additions & 3 deletions lib/core/device.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ var insuletOmniPod = require('../drivers/insulet/insuletDriver');
var oneTouchUltra2 = require('../drivers/onetouch/oneTouchUltra2');
var oneTouchVerioIQ = require('../drivers/onetouch/oneTouchVerioIQ');
var abbottFreeStyleLite = require('../drivers/abbott/abbottFreeStyleLite');
var abbottFreeStyleLibre = require('../drivers/abbott/abbottFreeStyleLibre');
var bayerContourNext = require('../drivers/bayer/bayerContourNext');
var animasDriver = require('../drivers/animas/animasDriver');
var medtronicDriver = require('../drivers/medtronic/medtronicDriver');
Expand All @@ -62,7 +61,6 @@ device._deviceDrivers = {
'OneTouchVerioIQ': oneTouchVerioIQ,
'AbbottFreeStyleLite': abbottFreeStyleLite,
'AbbottFreeStyleFreedomLite': abbottFreeStyleLite,
'AbbottFreeStyleLibre': abbottFreeStyleLibre,
'BayerContourNext': bayerContourNext,
'BayerContourNextUsb': bayerContourNext,
'BayerContourUsb': bayerContourNext,
Expand All @@ -79,7 +77,6 @@ device._deviceComms = {
'OneTouchVerioIQ': serialDevice,
'AbbottFreeStyleLite': serialDevice,
'AbbottFreeStyleFreedomLite': serialDevice,
'AbbottFreeStyleLibre': hidDevice,
'Tandem': serialDevice,
'BayerContourNext': hidDevice,
'BayerContourNextUsb': hidDevice,
Expand Down
61 changes: 0 additions & 61 deletions lib/drivers/abbott/.eslintrc

This file was deleted.

Loading

0 comments on commit c74e7da

Please sign in to comment.