We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
So far I have found 2 typos in the v2.0.9 SDK. Could you fix them/report them to Artery? 1.
typedef enum { EXINT_LINE_INTERRUPUT = 0x00, /*!< external interrupt line interrupt mode */ EXINT_LINE_EVENT = 0x01 /*!< external interrupt line event mode */ } exint_line_mode_type;
EXINT_LINE_INTERRUPUT is mistyped for sure (correctly: EXINT_LINE_INTERRUPT)
EXINT_LINE_INTERRUPUT
EXINT_LINE_INTERRUPT
void gpio_port_wirte(gpio_type *gpio_x, uint16_t port_value) { ...
gpio_port_wirte is also mistyped (correctly: gpio_port_write)
gpio_port_wirte
gpio_port_write
The text was updated successfully, but these errors were encountered:
No branches or pull requests
So far I have found 2 typos in the v2.0.9 SDK. Could you fix them/report them to Artery?
1.
EXINT_LINE_INTERRUPUT
is mistyped for sure (correctly:EXINT_LINE_INTERRUPT
)gpio_port_wirte
is also mistyped (correctly:gpio_port_write
)The text was updated successfully, but these errors were encountered: