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

toggle(); #77

Closed
Testato opened this issue Mar 19, 2017 · 17 comments
Closed

toggle(); #77

Testato opened this issue Mar 19, 2017 · 17 comments

Comments

@Testato
Copy link

Testato commented Mar 19, 2017

many core have a toogle() function.
Also some third part arduino core have it.
a toogle() function is useful on many or all project,
please add it to the official arduino core.

@valerionew
Copy link

+1

1 similar comment
@Shaggy85
Copy link

+1

@PaulStoffregen
Copy link

PaulStoffregen commented Mar 20, 2017

Also some third part arduino core have it.

Any chance you could be more specific about which ones? Maybe even link to the specific lines of code in their repositories?

@MauroMombelli
Copy link

It is a XOR on the register with a mask forma the pin, differenti core are forma different architecture and may have different and specific application. Notice this will also work for enable/disable pull up.

This is the classic simple and quick modification for the core, and uneccessary hard for the newbie.

@Vice95
Copy link

Vice95 commented Mar 20, 2017

+1

@Testato
Copy link
Author

Testato commented Mar 20, 2017

@PaulStoffregen
I do not remember in wich arducore i view it, but is there also this lib
http://playground.arduino.cc/Code/DigitalToggle

the code in it is very simple:

void digitalToggle(uint8_t P)
{
  *portInputRegister(digitalPinToPort(P)) = digitalPinToBitMask(P);
}

@matteob99
Copy link

+1

@cmaglie
Copy link
Member

cmaglie commented Mar 20, 2017

Please do not post useless comments with only "+1" in it, there is a specific function of github for doing so that adds "likes" to the comment without spamming the mailbox of 800+ people.

Thanks.

@cmaglie
Copy link
Member

cmaglie commented Mar 20, 2017

arduino/Arduino#111

@cousteaulecommandant
Copy link

By the way, no need to use XOR. ATmega already provides toggle functionality by writing a 1 to the PINx registers (the ones normally used for reading), so I guess it'd be a good idea to use that.

@valerionew
Copy link

@cousteaulecommandant exactly.
In fact the code posted by @Testato from the digitalToggle library uses this feature.

We want this feature 😄😄

@Testato
Copy link
Author

Testato commented Apr 12, 2017

In this lib there is also a very useful toggleMillis(Pin, time_ms);
It toggle a pin using millis() so whitout blocking delay.
https://github.com/Testato/ToggleMillis

@cousteaulecommandant
Copy link

@5N44P Ah, right, I missed that -_-"
(In my defense, I was talking about the code from PR arduino/Arduino#111 which cmaglie referenced; and also the mention of XOR by MauroMombelli; I didn't notice Testato's snippet)

@valerionew
Copy link

Cool, it has been labeled! This means that it will be considered? It would be nice if someone from arudino could explain if and how this type of requests are handled.
Thank you!

@Testato
Copy link
Author

Testato commented Mar 23, 2019

ST added Toggle function to the ST Official Arduino Core

digitalToggle	KEYWORD2
digitalToggleFast	KEYWORD2

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

Ping.

@matthijskooijman
Copy link
Collaborator

I just noticed there's two issues about this. I'm closing this one in favor of #130, which has a bit more rationale and some code examples.

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

No branches or pull requests