when I configure SPI, the program was broken

Following is nrf5340dk_nrf5340_cpuapp.overlay:

&spi1 {
	compatible = "nordic,nrf-spim";
	status = "okay";
	sck-pin = <17>;
	mosi-pin = <13>;
	miso-pin = <14>;
	
	cs-gpios = <&gpio0 18 GPIO_ACTIVE_LOW>;
	
	
	
	w5500: w5500@0 {
		compatible = "wiznet,w5500";
		label = "w5500";
		reg = <0>;
		spi-max-frequency = <50000000>;
		int-gpios = <&gpio0 15 GPIO_ACTIVE_LOW>;
		reset-gpios = <&gpio0 16 GPIO_ACTIVE_LOW>;
	};
};

the result:

what should I do?

Related