ArmbianHelper changed the topic of #armbian to: armbian - Linux for ARM development boards | www.armbian.com | Github: github.com/armbian | Commits: #armbian-commits | Developer talk: #armbian-devel | Forum feed: #armbian-rss | Off-Topic: #armbian-offtopic | Logs: -> irc.armbian.com
crabbedhaloablut has quit [Remote host closed the connection]
crabbedhaloablut has joined #armbian
aasami_ has quit [Quit: Lost terminal]
califax has quit [Remote host closed the connection]
califax has joined #armbian
norwich has quit [Ping timeout: 264 seconds]
norwich has joined #armbian
<Armbian-Discord> <1​st KFC Prophet> what do I do after getting one
<stipa> S​hyeline does it boot into linux?
<stipa> 1​st KFC Prophet what have you got?
<Armbian-Discord> <1​st KFC Prophet> yes
<Armbian-Discord> <1​st KFC Prophet> I ssh into it
<stipa> 1​st KFC Prophet cool
<stipa> you're in like flynn
TRS-80 has joined #armbian
<Armbian-Discord> <1​st KFC Prophet> wdym by that
<stipa> you hacked it
jclsn has quit [Ping timeout: 255 seconds]
jclsn has joined #armbian
TRS-80 has quit [Quit: bye]
lemonzest has quit [Quit: WeeChat 3.6]
TRS-80 has joined #armbian
lemonzest has joined #armbian
<Armbian-Discord> <1​st KFC Prophet> heh
<Armbian-Discord> <1​st KFC Prophet> im still clueless on what to do right now
TRS-80 has quit [Quit: restarting Emacs]
TRS-80 has joined #armbian
<stipa> what do you want to do?
<stipa> if you don't have an idea surf around and see what cool kids do with their machines rn
<stipa> NAS is among popular topics
<stipa> not much GPIO stuff since the boards aren't stable enough for serious stuff in the field
<Armbian-Discord> <1​st KFC Prophet> ik what I want to do
<Armbian-Discord> <1​st KFC Prophet> Im trying to make the screen display the desktop
<Armbian-Discord> <1​st KFC Prophet> copying the bufferframe of the pi onto the lcd hat
<Armbian-Discord> <1​st KFC Prophet> but I cant
<Armbian-Discord> <1​st KFC Prophet> https://www.waveshare.com/wiki/1.3inch_LCD_HAT
<Armbian-Discord> <1​st KFC Prophet> this is one of the only website that shows how to do it
<Armbian-Discord> <1​st KFC Prophet> but it's on rpi
<Armbian-Discord> <1​st KFC Prophet> and im on banana pi
<Armbian-Discord> <1​st KFC Prophet> I cant run the make -j
<stipa> you probably have to port it to your board if the GPIO port on it is not the same as on the RPI
<stipa> if the ports aren't pin compatible
<stipa> seems like it's a chnglish webpage, the question is if it even works in reality
<Armbian-Discord> <1​st KFC Prophet> the pins on the rpi are the same on bpi
<Armbian-Discord> <1​st KFC Prophet> ima check it out
<Armbian-Discord> <1​st KFC Prophet> it says it's for raspberry though
<Armbian-Discord> <1​st KFC Prophet> im pretty sure the screen works
<Armbian-Discord> <1​st KFC Prophet> on connecting to it, there was a black screen light ffrom it
<stipa> the page you linked with the screen also has RPI driver there
<Armbian-Discord> <1​st KFC Prophet> yea thats the problem
<Armbian-Discord> <1​st KFC Prophet> I cant find a single one for bpi
<Armbian-Discord> <1​st KFC Prophet> except this youtube guy
<Armbian-Discord> <1​st KFC Prophet> but his screen isnt the same as mine
<stipa> some RPI drivers do compile and work on other boards
TRS-80 has quit [Quit: restarting Emacs]
<Armbian-Discord> <1​st KFC Prophet> mhm
<Armbian-Discord> <1​st KFC Prophet> ik the waveshare one doesnt
<Armbian-Discord> <1​st KFC Prophet> ima try that one you showed
<stipa> try, other then that i can't help much
<stipa> you would have to reverse engineer the RPI driver and port it to banana pi
TRS-80 has joined #armbian
<Armbian-Discord> <1​st KFC Prophet> lol if only I was that good
<stipa> ppl do it all the time
<stipa> at least the code is open
<stipa> you don't need to go to assemler hell
<Armbian-Discord> <1​st KFC Prophet> im able to "understand" code(and by understand I mean get a bit of the gist of whats going on), but im definitly not good enough t reverse engineer it
<stipa> start with the datasheet for the chip that's driving the LCD
<stipa> Controller: ST7789VM
<Armbian-Discord> <1​st KFC Prophet> ok what do I do after that
<Armbian-Discord> <1​st KFC Prophet> yup
<stipa> you'll see the data fro mthe datasheet in the code and make a connection what's going on
<Armbian-Discord> <1​st KFC Prophet> you... lost me there
<stipa> the driver is written using the data from the datasheet
<stipa> datasheet has info about the low level
<Armbian-Discord> <1​st KFC Prophet> mk
<Armbian-Discord> <1​st KFC Prophet> is this the same
<Armbian-Discord> <1​st KFC Prophet> ooh yea it is
<stipa> it is
<stipa> save that
<stipa> yore luck
<stipa> you're lucky
<Armbian-Discord> <1​st KFC Prophet> how come
<Armbian-Discord> <1​st KFC Prophet> the datasheet is on the website
<stipa> that there is a datasheet available
<Armbian-Discord> <1​st KFC Prophet> jesus christ the datasheet is the most complex thing ive ever seen
<stipa> are you familiar with wha a "register" is?
<Armbian-Discord> <1​st KFC Prophet> calculus suddenly seems easy af compared to it
<stipa> it's a construction of a chip that's driving the LCD
<Armbian-Discord> <1​st KFC Prophet> fast storage?
<stipa> registers are how the driver communicates with the chip
<stipa> it writes to them and reads from them, they're located in the driver chip of the LCD
<Armbian-Discord> <1​st KFC Prophet> so
<stipa> if you look closely to the datasheet it's filled with descriptions of various registers
<Armbian-Discord> <1​st KFC Prophet> pi --> driver --> register --> chip
<stipa> registers are in the chip
<stipa> they're physical
<stipa> they're in the physical universe
<Armbian-Discord> <1​st KFC Prophet> so the driver helps to communicate between the pi and the registers
<Armbian-Discord> <1​st KFC Prophet> and the pi and register are physical
<Armbian-Discord> <1​st KFC Prophet> while the driver is a program
<stipa> yeah, driver is a program
<Armbian-Discord> <1​st KFC Prophet> ok what next
<Armbian-Discord> <1​st KFC Prophet> I dont understand what this bump view means
<stipa> now, you should find those registers somewhere i the code you're trying to port
<stipa> and make a connection of what's going on
<Armbian-Discord> <1​st KFC Prophet> in the driver code for the rpi?
<stipa> yeah
<Armbian-Discord> <1​st KFC Prophet> Ill go boot the pi and check the
<Armbian-Discord> <1​st KFC Prophet> also how come ur speaking through a bot
<Armbian-Discord> <1​st KFC Prophet> dont you have a discord account?
<stipa> i'm on IRC server
<stipa> actually, network of servers under the same name called libera
<Armbian-Discord> <1​st KFC Prophet> wait so ur like on commandline right now?
<stipa> CLI, yeah
<stipa> using client called Weechat
<stipa> i'm in the shell
<Armbian-Discord> <1​st KFC Prophet> lol why dont you use discord
<Armbian-Discord> <1​st KFC Prophet> wait
<Armbian-Discord> <1​st KFC Prophet> what do emojies look like
<Armbian-Discord> <1​st KFC Prophet> 🧊
<stipa> :)
<Armbian-Discord> <1​st KFC Prophet> wait
<stipa> it looks like this https://ibb.co/8NctbH6
<Armbian-Discord> <1​st KFC Prophet> I need to check the fbcp directory?
<Armbian-Discord> <1​st KFC Prophet> 💀 I think my friend would be all over that
<Armbian-Discord> <1​st KFC Prophet> which
<stipa> idk, search for tutorial
<stipa> for it
<Armbian-Discord> <1​st KFC Prophet> tutorials for what
<stipa> the tutorial is here, just follow it through how to compile https://github.com/EngineerWill/waveshare_fbcp
<stipa> if you know to read some code you should be able to do it with some reasearch
<stipa> not today but in a month probably
<stipa> f the RPI driver won't compile you'll have to find out why
<Armbian-Discord> <1​st KFC Prophet> eh what
<stipa> yeah
<Armbian-Discord> <1​st KFC Prophet> I need it done in max wednesday ;--;
<stipa> it'll be though if it's not something easy to fix
<stipa> you practically have to understand the whole process, like you literally wrote the driver
<stipa> and adapt it to you board
<stipa> that means knowing ins and outs of your board
<stipa> and of the RPI board + knowing ins and outs of the LCD
<stipa> if you really need to do it till the friday buy an RPI board instead
<Armbian-Discord> <1​st KFC Prophet> theres no more rpi anymore
<stipa> or borrow if it's an asignment
<Armbian-Discord> <1​st KFC Prophet> I doubt any one in my city has one
<Armbian-Discord> <1​st KFC Prophet> Failed to open VideoCore kernel mailbox!
<Armbian-Discord> <1​st KFC Prophet> I got this
TRS-80 has quit [Quit: restarting Emacs]
TRS-80 has joined #armbian
TRS-80 has quit [Quit: restarting Emacs]
TRS-80 has joined #armbian
archetech has joined #armbian
binarym_ is now known as binarym
archetech_ has joined #armbian
archetech has quit [Ping timeout: 255 seconds]
archetech has joined #armbian
archetech_ has quit [Ping timeout: 256 seconds]
archetech has quit [Quit: Konversation terminated!]
archetech has joined #armbian
TRS-80 has quit [Remote host closed the connection]
archetech has quit [Quit: Konversation terminated!]
haritz has quit [Ping timeout: 260 seconds]
archetech has joined #armbian
TheCoffeMaker has quit [Ping timeout: 260 seconds]
haritz has joined #armbian
TheCoffeMaker has joined #armbian
chewitt has joined #armbian
oida has joined #armbian
TheCoffeMaker has quit [Ping timeout: 246 seconds]
TheCoffeMaker has joined #armbian
lord_daemon has joined #armbian
archetech has quit [Quit: Konversation terminated!]
archetech has joined #armbian
haritz has quit [Ping timeout: 260 seconds]
alekksander has joined #armbian
califax has quit [Remote host closed the connection]
califax has joined #armbian
lanefu has joined #armbian
haritz has joined #armbian
califax has quit [Ping timeout: 255 seconds]
califax has joined #armbian
<Armbian-Discord> <R​obin> Anyone ever encountered this before?
<Armbian-Discord> <R​obin> How can I build armbian with another kernel version?
<Armbian-Discord> <R​obin> 5.15.71 to be specific
zeemate has joined #armbian
califax has quit [Remote host closed the connection]
califax has joined #armbian
lyri has joined #armbian
lanefu has quit [Quit: WeeChat 3.2-dev]
lanefu has joined #armbian
califax has quit [Remote host closed the connection]
califax has joined #armbian
<Armbian-Discord> <W​erner> @Robin Maybe that helps: https://forum.armbian.com/topic/24180-build-user-configuration-libconf/
joshaspinall has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
califax has quit [Remote host closed the connection]
califax has joined #armbian
califax has quit [Remote host closed the connection]
califax has joined #armbian
nickodd has joined #armbian
Lucanis has quit [Ping timeout: 252 seconds]
califax has quit [Remote host closed the connection]
califax has joined #armbian
califax has quit [Ping timeout: 255 seconds]
<cheakoirccloud> what package has the keys for: `https://security.debian.org stable-security/updates`? I get a bunch of these errors, so I grabbed `debian-archive-keyring` from sid with no change.
califax has joined #armbian
califax has quit [Remote host closed the connection]
califax has joined #armbian
califax has quit [Remote host closed the connection]
califax has joined #armbian
califax has quit [Remote host closed the connection]
califax has joined #armbian
califax has quit [Remote host closed the connection]
califax has joined #armbian
chewitt has quit [Quit: Zzz..]
califax has quit [Remote host closed the connection]
lord_daemon has quit [Ping timeout: 246 seconds]
califax has joined #armbian
lord_daemon has joined #armbian
califax has quit [Remote host closed the connection]
lemonzest has quit [Quit: WeeChat 3.6]
califax has joined #armbian
califax has quit [Remote host closed the connection]
califax has joined #armbian
califax has quit [Remote host closed the connection]
califax has joined #armbian
junaid_ has joined #armbian
joshaspinall has joined #armbian
cheakoirccloud has quit []
CosmicDJ has quit [*.net *.split]
kolla has quit [*.net *.split]
nekomancer[m] has quit [*.net *.split]
montjoie has quit [*.net *.split]
steev has quit [*.net *.split]
steev_ has joined #armbian
montjoie has joined #armbian
CosmicDJ has joined #armbian
nekomancer[m] has joined #armbian
Mangix has quit [Quit: https://quassel-irc.org - Chat comfortably. Anywhere.]
Mangix has joined #armbian
archetech has quit [Quit: Leaving]
steev_ is now known as steev
nickodd has left #armbian [#armbian]
cheakoirccloud has joined #armbian
popolon has joined #armbian
alekksander has quit [Quit: Konversation terminated!]
popolon has quit [Quit: Leaving]
califax has quit [Remote host closed the connection]
califax has joined #armbian
junaid_ has quit [Ping timeout: 252 seconds]
c0rnelius has quit [Ping timeout: 256 seconds]
zeemate has quit [Ping timeout: 256 seconds]
PhotoJim has quit [Remote host closed the connection]