ChanServ changed the topic of #armlinux to: ARM kernel talk [Upstream kernel, find your vendor forums for questions about their kernels] | https://libera.irclog.whitequark.org/armlinux
markussp has quit [Quit: Ping timeout (120 seconds)]
markussp has joined #armlinux
sihloo has joined #armlinux
sihloo has quit [Changing host]
sihloo has joined #armlinux
sihloo has quit [Quit: ZNC 1.9.1 - https://znc.in]
sihloo has joined #armlinux
sihloo has quit [Changing host]
sihloo has joined #armlinux
pikapika_lunar_a has joined #armlinux
pikapika_lunar has quit [Ping timeout: 248 seconds]
jclsn has quit [Ping timeout: 272 seconds]
pikapika_lunar_a has quit [Ping timeout: 260 seconds]
jclsn has joined #armlinux
heat has quit [Ping timeout: 248 seconds]
prabhakalad has quit [Ping timeout: 248 seconds]
prabhakalad has joined #armlinux
pikapika_lunar has joined #armlinux
pikapika_lunar has quit [Ping timeout: 276 seconds]
System_Error has quit [Remote host closed the connection]
System_Error has joined #armlinux
nsaenz has joined #armlinux
nsaenz has quit [Ping timeout: 244 seconds]
pikapika_lunar has joined #armlinux
haritz has quit [Ping timeout: 252 seconds]
haritz has joined #armlinux
haritz has joined #armlinux
haritz has quit [Changing host]
sgerhold6 has joined #armlinux
sgerhold has quit [Read error: Connection reset by peer]
sgerhold6 is now known as sgerhold
jkridner has quit [Read error: Connection reset by peer]
roxell has quit [Read error: Connection reset by peer]
dtor has quit [Ping timeout: 272 seconds]
narmstrong has quit [Ping timeout: 246 seconds]
crummel has quit [Ping timeout: 246 seconds]
roxell has joined #armlinux
narmstrong has joined #armlinux
jkridner has joined #armlinux
puranjaymohan has quit [Ping timeout: 272 seconds]
zx2c4 has quit [Ping timeout: 272 seconds]
zx2c4 has joined #armlinux
Norkle has quit [Ping timeout: 246 seconds]
puranjaymohan has joined #armlinux
dtor has joined #armlinux
Norkle has joined #armlinux
crummel has joined #armlinux
System_Error has quit [Remote host closed the connection]
System_Error has joined #armlinux
mvaittin has joined #armlinux
monstr has joined #armlinux
gclement has joined #armlinux
gclement has left #armlinux [#armlinux]
monstr has quit [Read error: Connection reset by peer]
monstr_ has joined #armlinux
amitk has joined #armlinux
headless has joined #armlinux
amitk_ has quit [Ping timeout: 272 seconds]
socksinspace has quit [Ping timeout: 252 seconds]
socksins1 has quit [Ping timeout: 260 seconds]
cbeznea has joined #armlinux
lag has quit [Quit: ZNC 1.8.2+deb3.1+deb12u1 - https://znc.in]
lag has joined #armlinux
vingu has quit [Quit: Leaving.]
vingu has joined #armlinux
headless has quit [Quit: Konversation terminated!]
nsaenz has joined #armlinux
nsaenz_ has joined #armlinux
nsaenz has quit [Read error: Connection reset by peer]
nsaenz_ has quit [Remote host closed the connection]
nsaenz has joined #armlinux
nsaenz has quit [Read error: Connection reset by peer]
nsaenz has joined #armlinux
nsaenz has quit [Remote host closed the connection]
nsaenz has joined #armlinux
<ukleinek> geertu: you only have usages in mind where a shorter period for a PWM is bad? :-)
<geertu> ukleinek: Usually overclocking leads to bad results
sszy has joined #armlinux
<geertu> For e.g. I2C and SPI, the requested rate (should) never be exceeded
<ukleinek> geertu: unless for the exceptions that is always the case :-)
<ukleinek> Something watchdog like where you need a raising edge every 10ms is an example from the other side.
<ukleinek> or a fan that must have a minimal rotation speed to yield enough cooling
<geertu> ukleinek: While overclocking the fan might overheat it to destruction?
luispm has quit [Quit: Leaving]
<ukleinek> geertu: ¯\_(ツ)_/¯
<ukleinek> geertu: at least the rounding direction is fixed. This is a nice upside compared to clk_set_rate().
<robmur01> How does one overclock a fan? The limit as PWM period tends towards zero is just DC, surely :)
<ukleinek> Note that for clk_set_rate rounding down isn't always the right thing either. For spi and i2c indeed you want round down, for an UART you want something near.
<ukleinek> geertu: bonus question: If you want a UART clock at rate R, but you can have only 0.8 R or 1.22 R, which one is better? Is it 0.8 R because abs(1 - 0.8) < abs(1 - 1.22)? Or is it 1.22 R because 1 / 1.22 > 0.8?
gclement1 has joined #armlinux
lain6141_ has joined #armlinux
gclement has joined #armlinux
socksins1 has joined #armlinux
lain6141 has quit [Ping timeout: 276 seconds]
gclement1 has quit [Ping timeout: 252 seconds]
gclement1 has joined #armlinux
gclement has quit [Ping timeout: 252 seconds]
socksinspace has joined #armlinux
heat has joined #armlinux
luispm has joined #armlinux
socksinspace has quit [Ping timeout: 255 seconds]
socksins1 has quit [Ping timeout: 252 seconds]
socksins1 has joined #armlinux
monstr_ has quit [Ping timeout: 252 seconds]
headless has joined #armlinux
fvincenzo has quit [Remote host closed the connection]
fvincenzo has joined #armlinux
monstr has joined #armlinux
nsaenz has quit [Remote host closed the connection]
nsaenz has joined #armlinux
psydroid has joined #armlinux
monstr has quit [Remote host closed the connection]
mvaittin has quit [Ping timeout: 248 seconds]
gclement1 has quit [Quit: Leaving.]
prabhakalad has quit [Ping timeout: 246 seconds]
prabhakalad has joined #armlinux
sszy has quit [Quit: http://quassel-irc.org - Chat comfortably. Anywhere.]
gclement has joined #armlinux
<cambrian_invader> (bonus answer: it's 1.22, since differences in baud time between the sender/receiver are what introduce bit errors when the reciever samples too close to an edge)
luispm has quit [Quit: Leaving]
gclement has quit [Quit: Leaving.]
amitk has quit [Ping timeout: 276 seconds]
psydroid has quit [Read error: Connection reset by peer]
psydroid has joined #armlinux
<geertu> ukleinek: It's been ages I did these calculations. drivers/tty/serial/sh-sci.c knows ;-)
<geertu> 1.22 R is best
<geertu> But it still won't work, as the deviation is too large.
<geertu> Unless you have only 2 databits ;)
tomba has quit [Quit: ZNC 1.9.0+deb2build3 - https://znc.in]
tomba has joined #armlinux
System_Error has quit [Remote host closed the connection]
System_Error has joined #armlinux
nsaenz has quit [Remote host closed the connection]
cbeznea has quit [Ping timeout: 272 seconds]
TheCoffeMaker_ has quit [Ping timeout: 260 seconds]
TheCoffeMaker has joined #armlinux
nsaenz has joined #armlinux
TheCoffeMaker has quit [Excess Flood]
TheCoffeMaker has joined #armlinux
gclement has joined #armlinux
headless has quit [Quit: Konversation terminated!]
cbeznea has joined #armlinux
sihloo has quit [Ping timeout: 255 seconds]
cbeznea has quit [Ping timeout: 252 seconds]
nsaenz has quit [Remote host closed the connection]
sihloo has joined #armlinux
sihloo has quit [Changing host]
sihloo has joined #armlinux
nsaenz has joined #armlinux
nsaenz has quit [Remote host closed the connection]
prabhakalad has quit [Ping timeout: 265 seconds]
prabhakalad has joined #armlinux
nsaenz has joined #armlinux
prabhakalad has quit [Ping timeout: 248 seconds]
nsaenz has quit [Ping timeout: 248 seconds]
psydroid has quit [Remote host closed the connection]
nsaenz has joined #armlinux
gclement has quit [Quit: Leaving.]
nsaenz has quit [Remote host closed the connection]
sihloo has quit [Ping timeout: 246 seconds]
sihloo has joined #armlinux
sihloo has quit [Changing host]
sihloo has joined #armlinux
System_Error has quit [Remote host closed the connection]
System_Error has joined #armlinux