Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
aa0fca4
Nano 33 BLE - enable the SPI1 sensors
KurtE Feb 5, 2025
03a7fce
Add call to initVariant in main move ble sense to variant.cpp
KurtE Mar 5, 2025
e831260
GIGA: Remove Arduino pins 11-13 from PWM list to fix SPI1
KurtE Feb 2, 2025
8428b9a
Comment out pins we removed to allow SPI1 to work
KurtE Mar 5, 2025
587b322
Merge pull request #65 from KurtE/GIGA_M7_fix_spi5
facchinm Mar 6, 2025
7fdcd38
Merge pull request #67 from KurtE/nano_sense_spi1_enable_pin
facchinm Mar 6, 2025
ac05eb3
Merge remote-tracking branch 'origin/fully_linked' into arduino
pillo79 Mar 21, 2025
87f323b
platform: common extension mapping
pillo79 Mar 4, 2025
43f2d5a
boards: merge common zephyr flags to platform.txt
pillo79 Mar 4, 2025
e48e3af
variants: generate cflags.txt and includes.txt from llext-edk
pillo79 Mar 4, 2025
887577b
build.sh: get the variant name from the Zephyr build system
pillo79 Mar 13, 2025
55eeab3
llext_exports: remove dropped net_buf_get
pillo79 Mar 20, 2025
a255a36
main: fix enable_shell_usb warnings
pillo79 Mar 20, 2025
751d5f6
loader: enable the Arduino API module
pillo79 Mar 20, 2025
a81cbb0
west: use post_4.1 branch for zephyr
pillo79 Mar 20, 2025
d1f9c0d
boards.txt: fix prelinked flag for post_build_tool
facchinm Mar 21, 2025
77ce198
loader: fix loading of prelinked sketch
facchinm Mar 21, 2025
f6effd0
bootstrap: export Zephyr install directory
pillo79 Mar 21, 2025
5477b89
mass rebuild
pillo79 Mar 24, 2025
0ba9bf0
variants: fix multiple USB definition issues
pillo79 Mar 24, 2025
804ccc1
nano33ble: disable stack canaries
facchinm Mar 26, 2025
3bb2f23
SocketWrapper: start restucturing lib
facchinm Mar 26, 2025
30f1330
gh: fix usage as module
facchinm Mar 26, 2025
ec9326e
Ethernet: compile only if enabled in dts
facchinm Mar 26, 2025
45a735b
loader: fix offset for CONFIG_LLEXT_STORAGE_WRITABLE
facchinm Mar 26, 2025
33706ae
loader: add exports for wifiAP
facchinm Mar 26, 2025
253cde8
rw612: enable wifi AP support
facchinm Mar 26, 2025
e85a95d
platform.txt: provide clean BOARDNAME defines
facchinm Mar 26, 2025
79fc9e2
loader: move dhcp server in own ifdef
facchinm Mar 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
GIGA: Remove Arduino pins 11-13 from PWM list to fix SPI1
resolves: #64

Removed the pins logical Arduino pins 11-13 from the PWM pin list, plus their defines
for the timers.

With these defines in place, the pins Alternate Function settings were set to that of the timers
versus the SPI value (5)

Note: This was done by @mjs513 and myself.
  • Loading branch information
KurtE committed Mar 5, 2025
commit e8312600e2e80e869fceb03463474022d004b002
19 changes: 3 additions & 16 deletions loader/boards/arduino_giga_r1_m7.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@

pwm1: pwm {
status = "okay";
pinctrl-0 = <&tim1_ch3_pj9 &tim1_ch1_pk1 &tim1_ch2_pj11>;
pinctrl-0 = <&tim1_ch3_pj9 &tim1_ch1_pk1>;
pinctrl-names = "default";
};
};
Expand Down Expand Up @@ -107,21 +107,11 @@

pwm8: pwm {
status = "okay";
pinctrl-0 = <&tim8_ch1_pj8 &tim8_ch2_pj10>;
pinctrl-0 = <&tim8_ch1_pj8>;
pinctrl-names = "default";
};
};

&timers12 {
status = "okay";
st,prescaler = <100>;

pwm12: pwm {
status = "okay";
pinctrl-0 = <&tim12_ch1_ph6>;
pinctrl-names = "default";
};
};

&pwm1 {
/* Use the pwmclock node to start the clock generation */
Expand Down Expand Up @@ -518,10 +508,7 @@
<&pwm3 1 PWM_HZ(500) PWM_POLARITY_NORMAL>,
<&pwm4 3 PWM_HZ(500) PWM_POLARITY_NORMAL>,
<&pwm4 4 PWM_HZ(500) PWM_POLARITY_NORMAL>,
<&pwm1 1 PWM_HZ(5000) PWM_POLARITY_NORMAL>,
<&pwm8 2 PWM_HZ(500) PWM_POLARITY_NORMAL>,
<&pwm1 2 PWM_HZ(5000) PWM_POLARITY_NORMAL>,
<&pwm12 1 PWM_HZ(500) PWM_POLARITY_NORMAL>;
<&pwm1 1 PWM_HZ(5000) PWM_POLARITY_NORMAL>;

io-channels = <&adc1 4>,
<&adc1 8>,
Expand Down
Loading