109 lines
3.2 KiB
C
109 lines
3.2 KiB
C
|
/*
|
||
|
* This file is part of the MicroPython project, http://micropython.org/
|
||
|
*
|
||
|
* The MIT License (MIT)
|
||
|
*
|
||
|
* Copyright (c) 2021 Scott Shawcroft for Adafruit Industries
|
||
|
*
|
||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
|
* of this software and associated documentation files (the "Software"), to deal
|
||
|
* in the Software without restriction, including without limitation the rights
|
||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
|
* copies of the Software, and to permit persons to whom the Software is
|
||
|
* furnished to do so, subject to the following conditions:
|
||
|
*
|
||
|
* The above copyright notice and this permission notice shall be included in
|
||
|
* all copies or substantial portions of the Software.
|
||
|
*
|
||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||
|
* THE SOFTWARE.
|
||
|
*/
|
||
|
|
||
|
#include "py/mperrno.h"
|
||
|
#include "py/mphal.h"
|
||
|
#include "shared-bindings/busio/I2C.h"
|
||
|
#include "py/runtime.h"
|
||
|
|
||
|
#include "shared-bindings/microcontroller/__init__.h"
|
||
|
|
||
|
#define NO_PIN 0xff
|
||
|
|
||
|
// One second
|
||
|
#define BUS_TIMEOUT_US 1000000
|
||
|
|
||
|
STATIC bool never_reset_i2c[2];
|
||
|
// STATIC i2c_inst_t *i2c[2] = {i2c0, i2c1};
|
||
|
|
||
|
void reset_i2c(void) {
|
||
|
for (size_t i = 0; i < 2; i++) {
|
||
|
if (never_reset_i2c[i]) {
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void common_hal_busio_i2c_construct(busio_i2c_obj_t *self,
|
||
|
const mcu_pin_obj_t *scl, const mcu_pin_obj_t *sda, uint32_t frequency, uint32_t timeout) {
|
||
|
}
|
||
|
|
||
|
bool common_hal_busio_i2c_deinited(busio_i2c_obj_t *self) {
|
||
|
return self->sda_pin == NO_PIN;
|
||
|
}
|
||
|
|
||
|
void common_hal_busio_i2c_deinit(busio_i2c_obj_t *self) {
|
||
|
if (common_hal_busio_i2c_deinited(self)) {
|
||
|
return;
|
||
|
}
|
||
|
// never_reset_i2c[i2c_hw_index(self->peripheral)] = false;
|
||
|
|
||
|
reset_pin_number(self->sda_pin);
|
||
|
reset_pin_number(self->scl_pin);
|
||
|
self->sda_pin = NO_PIN;
|
||
|
self->scl_pin = NO_PIN;
|
||
|
}
|
||
|
|
||
|
bool common_hal_busio_i2c_probe(busio_i2c_obj_t *self, uint8_t addr) {
|
||
|
return common_hal_busio_i2c_write(self, addr, NULL, 0, true) == 0;
|
||
|
}
|
||
|
|
||
|
bool common_hal_busio_i2c_try_lock(busio_i2c_obj_t *self) {
|
||
|
bool grabbed_lock = false;
|
||
|
if (!self->has_lock) {
|
||
|
grabbed_lock = true;
|
||
|
self->has_lock = true;
|
||
|
}
|
||
|
return grabbed_lock;
|
||
|
}
|
||
|
|
||
|
bool common_hal_busio_i2c_has_lock(busio_i2c_obj_t *self) {
|
||
|
return self->has_lock;
|
||
|
}
|
||
|
|
||
|
void common_hal_busio_i2c_unlock(busio_i2c_obj_t *self) {
|
||
|
self->has_lock = false;
|
||
|
}
|
||
|
|
||
|
uint8_t common_hal_busio_i2c_write(busio_i2c_obj_t *self, uint16_t addr,
|
||
|
const uint8_t *data, size_t len, bool transmit_stop_bit) {
|
||
|
|
||
|
return MP_ENODEV;
|
||
|
}
|
||
|
|
||
|
uint8_t common_hal_busio_i2c_read(busio_i2c_obj_t *self, uint16_t addr,
|
||
|
uint8_t *data, size_t len) {
|
||
|
return MP_ENODEV;
|
||
|
}
|
||
|
|
||
|
void common_hal_busio_i2c_never_reset(busio_i2c_obj_t *self) {
|
||
|
// never_reset_i2c[i2c_hw_index(self->peripheral)] = true;
|
||
|
|
||
|
never_reset_pin_number(self->scl_pin);
|
||
|
never_reset_pin_number(self->sda_pin);
|
||
|
}
|