eeprom 0.1.0

EEPROM emulation on top of FLASH for STM32
Documentation
version: 2
jobs:
  build:
    docker:
      - image: idubrov/rust-stm32:latest
    environment:
      - RUSTFLAGS: "-C link-dead-code"
    steps:
      - checkout
      - run: cargo build
      - run: cargo test --features=use-stm32f103xx
      - run: cargo clippy
      - run: cargo kcov
      - run:
          name: Uploading code coverage
          command: |
              bash <(curl -s https://codecov.io/bash)