On Wed, May 24, 2023 at 11:02:39AM +0200, Mike Looijmans wrote: > On 23-05-2023 18:00, Conor Dooley wrote: > > On Tue, May 23, 2023 at 02:43:53PM +0200, Mike Looijmans wrote: > > > The MCP3564R is a 24-bit ADC with 8 multiplexed inputs. The MCP3561R is > > > the same device with 2 inputs, the MCP3562R has 4 inputs. The device > > > contains one ADC and a multiplexer to select the inputs to the ADC. > > > > My favourite - nothing for a while & then two come along almost at once! > > https://lore.kernel.org/all/20230519160145.44208-2-marius.cristea@xxxxxxxxxxxxx/ > > > > Would you mind, since he seems to have sent it first, reviewing his > > series? > > > > Oh, damn. Want to, just have to figure out how I can reply to mails that I > never got (had delivery turned off for linux-iio). Tips welcome (just send > to me personally...) b4 is The Way. Assuming you have mutt setup to reply, just pass a msgid or lore url to this script: #!/bin/sh -e if [ -z $1 ]; then echo "Usage: $0 [b4 mbox options] <messageId>" exit 1 fi msgid=$1 tmpfile=$(mktemp) b4 mbox -o - "$*" > $tmpfile mutt -f $tmpfile rm $tmpfile