Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ottojo/zephyr_stm32_comp
OOT Zephyr driver for STM32F0 COMP peripheral
https://github.com/ottojo/zephyr_stm32_comp
stm32 stm32f0 zephyr zephyr-rtos
Last synced: 16 days ago
JSON representation
OOT Zephyr driver for STM32F0 COMP peripheral
- Host: GitHub
- URL: https://github.com/ottojo/zephyr_stm32_comp
- Owner: ottojo
- Created: 2023-10-10T20:23:47.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-24T11:07:42.000Z (about 1 year ago)
- Last Synced: 2024-07-30T21:08:18.303Z (3 months ago)
- Topics: stm32, stm32f0, zephyr, zephyr-rtos
- Language: C
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```c
#include/ {
soc {
comp1: comp@4001001c {
compatible = "st,stm32f0-comparator";
status = "okay";
reg = <0x4001001c 2>;pinctrl-0 = <&comp1_inp_pa1 &comp1_out_pa6>;
pinctrl-names = "default";zephyr,input-noninverting = ;
zephyr,input-inverting = ;
zephyr,invert-output;
zephyr,output = ;
};comp2: comp@4001001e {
compatible = "st,stm32f0-comparator";
status = "okay";
reg = <0x4001001e 2>;pinctrl-0 = <&comp2_inp_pa3 &comp2_out_pa2>;
pinctrl-names = "default";zephyr,input-noninverting = ;
zephyr,input-inverting = ;
zephyr,output = ;
};
};
};
```