circuitpython/shared-module/nativeio/OneWire.c
Scott Shawcroft ff208d7677 Add low-level OneWire support class.
This class focuses on the timing sensitive parts of the protocol.
Everything else will be done by Python code.

This also establishes that its OK to back a nativeio class with a
bitbang implementation when no hardware acceleration exists. When
it does, then bitbangio should be used to explicitly bitbang a
protocol.
2017-03-25 12:04:49 +00:00

53 lines
2.2 KiB
C

/*
* This file is part of the Micro Python project, http://micropython.org/
*
* The MIT License (MIT)
*
* Copyright (c) 2017 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.
*/
// Wraps the bitbangio implementation of OneWire for use in nativeio.
#include "common-hal/microcontroller/types.h"
#include "shared-bindings/bitbangio/OneWire.h"
#include "common-hal/nativeio/types.h"
void common_hal_nativeio_onewire_construct(nativeio_onewire_obj_t* self,
const mcu_pin_obj_t* pin) {
shared_module_bitbangio_onewire_construct(&self->bitbang, pin);
}
void common_hal_nativeio_onewire_deinit(nativeio_onewire_obj_t* self) {
shared_module_bitbangio_onewire_deinit(&self->bitbang);
}
bool common_hal_nativeio_onewire_reset(nativeio_onewire_obj_t* self) {
return shared_module_bitbangio_onewire_reset(&self->bitbang);
}
bool common_hal_nativeio_onewire_read_bit(nativeio_onewire_obj_t* self) {
return shared_module_bitbangio_onewire_read_bit(&self->bitbang);
}
void common_hal_nativeio_onewire_write_bit(nativeio_onewire_obj_t* self,
bool bit) {
shared_module_bitbangio_onewire_write_bit(&self->bitbang, bit);
}