Jump to content

Setting up the alternative function of NanoPi Neo pins


vk81

Recommended Posts

Hello, I use the NanoPi Neo (4.19.38-sunxi,  Armbian #5.85 ) to pool an external device over /dev/ttyS1 serial port.  At flashing moment of the external device, I should switch pins of ttyS1 to input mode by using bash commands

#!/bin/bash
firmware=`ls update_*.hex`

echo "198" > /sys/class/gpio/export
echo "199" > /sys/class/gpio/export
echo "in" > /sys/class/gpio/gpio198/direction
echo "in" > /sys/class/gpio/gpio199/direction

# device update
flash -P linuxgpio -b 40000 $firmware

echo "198" > /sys/class/gpio/unexport
echo "199" > /sys/class/gpio/unexport

Is it possible to change up the mode of pins to the alternate function (ALT5) without the rebooting the OS?

Link to comment
Share on other sites

While I'd like to give a foxing clever response...

 

I'm not seeing a way to do what you're asking - it's late in the day for me, so I'm sure someone will find a solution perhaps..

 

GPIO's are assigned by uboot/device tree/DT overlay on boot

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines