boards: adi: max32657evkit: Add adxl367 accelerometer

Add support for ADXL367 accelerometer connected to I3C bus.

Signed-off-by: Tahsin Mutlugun <Tahsin.Mutlugun@analog.com>
This commit is contained in:
Tahsin Mutlugun 2025-06-25 13:36:20 +03:00 committed by Chris Friedt
parent 6320e504dd
commit 00e217da7d
2 changed files with 10 additions and 0 deletions

View File

@ -42,4 +42,7 @@ endchoice
endif # BOARD_MAX32657EVKIT_MAX32657_NS
config I3C
default y if ADXL367
endif # BOARD_MAX32657EVKIT

View File

@ -39,6 +39,7 @@
/* These aliases are provided for compatibility with samples */
aliases {
accel0 = &adxl367;
led0 = &led1;
sw0 = &pb1;
watchdog0 = &wdt0;
@ -84,4 +85,10 @@
i2c-scl-hz = <DT_FREQ_K(200)>;
i3c-scl-hz = <DT_FREQ_K(800)>;
i3c-od-scl-hz = <DT_FREQ_K(400)>;
adxl367: adxl367@530000000000000000 {
compatible = "adi,adxl367";
reg = <0x53 0x00 0x00>;
status = "okay";
};
};