Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ability to set speed in shiftIn & shiftOut #83

Open
lemio opened this issue Jul 27, 2017 · 1 comment
Open

Ability to set speed in shiftIn & shiftOut #83

lemio opened this issue Jul 27, 2017 · 1 comment

Comments

@lemio
Copy link

lemio commented Jul 27, 2017

While the clock speeds of various Microcontrollers increase, the speed of the shiftIn and shiftOut also increases. This creates a problem when communicating with slower devices. It could be interesting to add an optional argument to these functions so they reliably work with slower devices. Just like with the SPI hardware library where you can set the maximum SPI speed. https://www.arduino.cc/en/Reference/SPI

I had this problem when I was trying to use the 'normal' library for the HX711 load cell amp with an ESP32.
bogde/HX711#75

The interface could look like this:

void shiftOut(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder, uint8_t val, unsigned long maxSpeed = 0);
uint8_t shiftIn(uint8_t dataPin, uint8_t clockPin, uint8_t bitOrder, unsigned long maxSpeed = 0);

Where a maxSpeed of 0 would mean that it would use the full speed of the microcontroller. Otherwise you could define the speed as frequency (15Mhz -> 15000000) just like in the SPI hardware library.

In this way Arduino would be future-proof without losing backwards compatibility.

@sandeepmistry sandeepmistry transferred this issue from arduino/Arduino Sep 16, 2019
@FrankBoesing
Copy link

Ping..

lemio added a commit to lemio/ArduinoCore-API that referenced this issue Dec 1, 2021
Allowing the user to set the max speed will enable newer faster Arduino based MCU's to control older devices that need slower clock speeds to function. 

arduino#83
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants