1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #20525 from Teufelchen1/deprecate/muxpos

cpu/sam0: Remove deprecated muxpos
This commit is contained in:
Teufelchen 2024-05-07 14:15:04 +00:00 committed by GitHub
commit e2541c8528
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -877,11 +877,7 @@ static inline bool cpu_woke_from_backup(void)
* @brief ADC Channel Configuration
*/
typedef struct {
union {
uint32_t inputctrl; /**< ADC channel pin multiplexer value */
uint32_t muxpos; /**< ADC channel pin multiplexer value
@deprecated, use inputctrl instead */
};
uint32_t inputctrl; /**< ADC channel pin multiplexer value */
#ifdef ADC0
Adc *dev; /**< ADC device descriptor */
#endif