circuitpython/shared-module/busdevice/I2CDevice.c

75 lines
2.9 KiB
C
Raw Normal View History

2020-10-24 21:48:35 -04:00
/*
* This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
2020-10-26 17:54:24 -04:00
* Copyright (c) 2020 Mark Komus
2020-10-24 21:48:35 -04:00
*
* 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 "shared-bindings/busdevice/I2CDevice.h"
#include "shared-bindings/busio/I2C.h"
#include "py/mperrno.h"
#include "py/nlr.h"
2020-10-25 11:15:45 -04:00
#include "py/runtime.h"
2020-10-24 21:48:35 -04:00
2020-10-29 17:13:03 -04:00
void common_hal_busdevice_i2cdevice_construct(busdevice_i2cdevice_obj_t *self, busio_i2c_obj_t *i2c, uint8_t device_address) {
2020-10-24 21:48:35 -04:00
self->i2c = i2c;
self->device_address = device_address;
}
void common_hal_busdevice_i2cdevice_lock(busdevice_i2cdevice_obj_t *self) {
bool success = false;
while (!success) {
success = common_hal_busio_i2c_try_lock(self->i2c);
2020-11-01 22:38:20 -05:00
//RUN_BACKGROUND_TASKS;
//mp_handle_pending();
2020-10-24 21:48:35 -04:00
}
}
void common_hal_busdevice_i2cdevice_unlock(busdevice_i2cdevice_obj_t *self) {
common_hal_busio_i2c_unlock(self->i2c);
}
uint8_t common_hal_busdevice_i2cdevice_readinto(busdevice_i2cdevice_obj_t *self, mp_obj_t buffer, size_t length) {
2020-10-29 17:13:03 -04:00
return common_hal_busio_i2c_read(self->i2c, self->device_address, buffer, length);
2020-10-24 21:48:35 -04:00
}
uint8_t common_hal_busdevice_i2cdevice_write(busdevice_i2cdevice_obj_t *self, mp_obj_t buffer, size_t length) {
2020-10-29 17:13:03 -04:00
return common_hal_busio_i2c_write(self->i2c, self->device_address, buffer, length, true);
2020-10-24 21:48:35 -04:00
}
2020-10-29 17:13:03 -04:00
void common_hal_busdevice_i2cdevice_probe_for_device(busdevice_i2cdevice_obj_t *self) {
2020-10-25 11:15:45 -04:00
common_hal_busdevice_i2cdevice_lock(self);
2020-10-24 21:48:35 -04:00
2020-10-25 11:15:45 -04:00
mp_buffer_info_t bufinfo;
mp_obj_t buffer = mp_obj_new_bytearray_of_zeros(1);
2020-10-24 21:48:35 -04:00
2020-10-25 11:15:45 -04:00
mp_get_buffer_raise(buffer, &bufinfo, MP_BUFFER_WRITE);
2020-10-24 21:48:35 -04:00
2020-10-25 11:15:45 -04:00
uint8_t status = common_hal_busdevice_i2cdevice_readinto(self, (uint8_t*)bufinfo.buf, 1);
if (status != 0) {
common_hal_busdevice_i2cdevice_unlock(self);
mp_raise_ValueError_varg(translate("No I2C device at address: %x"), self->device_address);
}
2020-10-27 10:13:14 -04:00
2020-10-25 11:15:45 -04:00
common_hal_busdevice_i2cdevice_unlock(self);
2020-10-27 10:13:14 -04:00
}