Git Product home page Git Product logo

Comments (10)

board707 avatar board707 commented on July 3, 2024

Is it possible to operate ‘Fast mode’ through ‘CORE1’?

Hi
You can easily write such "fast mode" itself, using the direct port manipulation:

int pin = PA5;
// generate a port and mask for defined pin
uint32_t* pin_set_register = portSetRegister(pin);
uint32_t pin_set_mask = digitalPinToBitMask(pin);

// set pin HIGH  ( as digitalWrite() HIGH)
*pin_set_register = pin_set_mask;

// set pin LOW (digitalWrite() LOW)
*pin_set_register = pin_set_mask << 16;

from arduino_stm32.

SeongJongKwak avatar SeongJongKwak commented on July 3, 2024

@board707

Thank you.
I understand how to do it.

Is there a method using 'digitalRead'?

from arduino_stm32.

board707 avatar board707 commented on July 3, 2024

I think that the syntax seems to be the similar, but I never need a "fast" digitalRead() in my projects.

from arduino_stm32.

stevstrong avatar stevstrong commented on July 3, 2024

use:

uint16_t value = *portInputRegister(pin) & digitalPinToBitMask(pin);

if value == 0 then pin is "low", otherwise pin is "high".

from arduino_stm32.

SeongJongKwak avatar SeongJongKwak commented on July 3, 2024

@stevstrong
Thank you for answer.
However, I'm saying this because I don't know much, but 'an error occurs during compilation'.

code :
int pin7 = PA5;
uint16_t value1 = *portInputRegister(pin7)& digitalPinToBitMask(pin7);

error :
\generic_stm32f103c/variant.h:7:44: error: base operand of '->' is not a pointer
#define portInputRegister(port) ( &(port->regs->IDR) )

from arduino_stm32.

stevstrong avatar stevstrong commented on July 3, 2024

then try:

uint16_t value1 = portInputRegister(pin7) & digitalPinToBitMask(pin7);

from arduino_stm32.

SeongJongKwak avatar SeongJongKwak commented on July 3, 2024

code :
uint16_t value1 = *portInputRegister(digitalPinToPort(pin7)) & digitalPinToBitMask(pin7);

Thank you.

from arduino_stm32.

SeongJongKwak avatar SeongJongKwak commented on July 3, 2024

@stevstrong

It doesn't work.

code:
const int SIG[] = {PA5, PA4, PA0, PA15};
//------------------------------------------------ --------------------//
value1 = *portInputRegister(digitalPinToPort(SIG[0])) & digitalPinToBitMask(SIG[0]);
value2 = *portInputRegister(digitalPinToPort(SIG[1])) & digitalPinToBitMask(SIG[1]);
value3 = *portInputRegister(digitalPinToPort(SIG[2])) & digitalPinToBitMask(SIG[2]);
uint16_t hall_y = 0; uint16_t hall_b = 0; uint16_t hall_g = 0;
if(value1==0){ hall_y = 0; }else{ hall_y = 1; }
if(value2==0){ hall_b = 0; }else{ hall_b = 1; }
if(value3==0){ hall_g = 0; }else{ hall_g = 1; }
//------------------------------------------------ --------------------//

from arduino_stm32.

stevstrong avatar stevstrong commented on July 3, 2024

What exactly do you mean "it doesn't work"? Which part does not work?

from arduino_stm32.

board707 avatar board707 commented on July 3, 2024

It doesn't work.

@SeongJongKwak
The port access syntax is correct, the error somewhere else in your code.

from arduino_stm32.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.