[Oberon] Oberon Digest, Vol 139, Issue 13

Søren Renner soren.renner at gmail.com
Mon Dec 21 13:25:12 CET 2015


It is with a heavy heart that I must inform you all that the BosZurOberon
2016 event has been descheduled (cancelled, wiped from (future) history,
deprecated) due to events beyond the control of the Committee.

On Mon, Dec 21, 2015 at 6:00 AM, <oberon-request at lists.inf.ethz.ch> wrote:

> Send Oberon mailing list submissions to
>         oberon at lists.inf.ethz.ch
>
> To subscribe or unsubscribe via the World Wide Web, visit
>         https://lists.inf.ethz.ch/mailman/listinfo/oberon
> or, via email, send a message with subject or body 'help' to
>         oberon-request at lists.inf.ethz.ch
>
> You can reach the person managing the list at
>         oberon-owner at lists.inf.ethz.ch
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Oberon digest..."
>
>
> Today's Topics:
>
>    1. ? TeXTools.Mod ? (eas lab)
>    2. 2013 Oberon book errata (Srinivas Nayak)
>    3. Re: 2013 Oberon book errata (J?rg Straube)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Mon, 21 Dec 2015 03:46:30 +0200
> From: eas lab <lab.eas at gmail.com>
> To: oberon at lists.inf.ethz.ch
> Subject: [Oberon] ? TeXTools.Mod ?
> Message-ID:
>         <CAN3-DLGfD9AQUydPG1pe4a_aX6UbtFUGR_TTQH=
> Rks9qRDtBuw at mail.gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
> While searching for something else, I stumbled on TeXTools.Mod
> which is potentially very interesting for me.
>
> Plain-text-fetchers obviously have a problem showing texts which
> have a few embedded LaTex lines  -- which is common.
>
> I don't want to analsyse the code, which reads ....
> (** Convert selected text in-place from LaTeX tabbing environment
>  syntax to readable text. *)
> PROCEDURE Tabs*;
> ....
> PROCEDURE MergeLines*;
> ....
> PROCEDURE SizeTable*; <-- confusing ?
> ....
> PROCEDURE TableTotal*; <-- confusing ?
> ----TeXTools.Mod has the trailing 6 lines: test/usage:-
> System.Free TeXTools ~
>
> TeXTools.Tabbing  <-- selected text in-place from readable text to LaTeX
>     tabbing environment syntax.
> TeXTools.Tabs
> TeXTools.MergeLines
> TeXTools.SizeTable
> TeXTools.TableTotal
> ----- and so, I try:-
> TextGadget with 1-line selected: one two three
> TeXTools.Tabbing  == the selection reverse-video is removed,
> but ....
>
> Has anybody here used this program? google failed me.
>
> == Chris Glur.
>
> Obviously you need a translation-table & fonts !!
> How many other tar-traps are in ETHO ?
>
>
> ------------------------------
>
> Message: 2
> Date: Mon, 21 Dec 2015 07:29:04 +0530
> From: Srinivas Nayak <sinu.nayak2001 at gmail.com>
> To: ETH Oberon and related systems <oberon at lists.inf.ethz.ch>
> Subject: [Oberon] 2013 Oberon book errata
> Message-ID: <56775CE8.2030702 at gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Dear All,
>
> I noticed, table of contents of new Oberon book doesn't match with text
> content present inside.
> For example, TOC says 9.3 talks about SPI, but it does actually say about
> SD card.
> TOC says 17.2.2 talks about SPI, but it shows Mouse.
>
> There may be others, but while looking for how networking is implemented
> in new Oberon, I came across these two. May I know which sections will help
> me understand fully how the networking is implemented in new Oberon?
> Does it try to implement all networking protocol stacks in software as in
> software defined radio?
>
>
> With thanks and best regards,
>
> Yours sincerely,
> Srinivas Nayak
>
> Home: http://www.mathmeth.com/sn/
> Blog: http://srinivas-nayak.blogspot.in/
>
> On 12/08/2015 05:23 PM, Chris Burrows wrote:
> > We have now successfully ported the RISC5 processor to Digilent's latest
> > 'Arty' development board which uses the Xilinx ArtixR-7 35T FPGA device
> and
> > retails at $US 99:
> >
> > http://www.xilinx.com/products/boards-and-kits/arty.html
> >
> > We are planning to support our 'Embedded' version of Project Oberon (i.e.
> > not the full 'Workstation' version) running in the BRAM on this board.
> For
> > more information on the Embedded and Workstation Project Oberon systems
> that
> > can be used with the Astrobe IDE and to register your details to be
> notified
> > when the Arty-targeted version is available go to:
> >
> > http://www.astrobe.com/RISC5
> >
> > Regards,
> > Chris Burrows
> >
> > CFB Software
> > http://www.astrobe.com
> >
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > --
> > Oberon at lists.inf.ethz.ch mailing list for ETH Oberon and related systems
> > https://lists.inf.ethz.ch/mailman/listinfo/oberon
> >
>
>
> ------------------------------
>
> Message: 3
> Date: Mon, 21 Dec 2015 07:56:42 +0100
> From: J?rg Straube <joerg.straube at iaeth.ch>
> To: ETH Oberon and related systems <oberon at lists.inf.ethz.ch>
> Subject: Re: [Oberon] 2013 Oberon book errata
> Message-ID: <895FAC43-EE79-4D7D-B7DD-D2B0A3F7D966 at iaeth.ch>
> Content-Type: text/plain; charset="utf-8"
>
> Hi Srinivas
>
> In project Oberon there are basically two modules that implement the
> networking.
> - SCC.Mod
>   Low level module that communicates with the RF chip. The HW interface
> used for communication with the chip is SPI. SPI is also used for the "hard
> disk" (SD card). To understan the code you need to read the datasheet of
> the chip.
>
> - Net.Mod
> Here indeed the network protocol is implemented in SW, but it's neither
> Ethernet nor IP nor other widely used protocols like UDP nor TCP.. It's a
> proprietary "simple" file transfer protocol to be used to transfer files
> between two Oberon machines.
>
> Br
> J?rg
>
> > Am 21.12.2015 um 02:59 schrieb Srinivas Nayak <sinu.nayak2001 at gmail.com
> >:
> >
> > Dear All,
> >
> > I noticed, table of contents of new Oberon book doesn't match with text
> content present inside.
> > For example, TOC says 9.3 talks about SPI, but it does actually say
> about SD card.
> > TOC says 17.2.2 talks about SPI, but it shows Mouse.
> >
> > There may be others, but while looking for how networking is implemented
> in new Oberon, I came across these two. May I know which sections will help
> me understand fully how the networking is implemented in new Oberon?
> > Does it try to implement all networking protocol stacks in software as
> in software defined radio?
> >
> >
> > With thanks and best regards,
> >
> > Yours sincerely,
> > Srinivas Nayak
> >
> > Home: http://www.mathmeth.com/sn/
> > Blog: http://srinivas-nayak.blogspot.in/
> >
> >> On 12/08/2015 05:23 PM, Chris Burrows wrote:
> >> We have now successfully ported the RISC5 processor to Digilent's latest
> >> 'Arty' development board which uses the Xilinx ArtixR-7 35T FPGA device
> and
> >> retails at $US 99:
> >>
> >> http://www.xilinx.com/products/boards-and-kits/arty.html
> >>
> >> We are planning to support our 'Embedded' version of Project Oberon
> (i.e.
> >> not the full 'Workstation' version) running in the BRAM on this board.
> For
> >> more information on the Embedded and Workstation Project Oberon systems
> that
> >> can be used with the Astrobe IDE and to register your details to be
> notified
> >> when the Arty-targeted version is available go to:
> >>
> >> http://www.astrobe.com/RISC5
> >>
> >> Regards,
> >> Chris Burrows
> >>
> >> CFB Software
> >> http://www.astrobe.com
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >>
> >> --
> >> Oberon at lists.inf.ethz.ch mailing list for ETH Oberon and related
> systems
> >> https://lists.inf.ethz.ch/mailman/listinfo/oberon
> >>
> > --
> > Oberon at lists.inf.ethz.ch mailing list for ETH Oberon and related systems
> > https://lists.inf.ethz.ch/mailman/listinfo/oberon
> -------------- next part --------------
> A non-text attachment was scrubbed...
> Name: smime.p7s
> Type: application/pkcs7-signature
> Size: 2376 bytes
> Desc: not available
> URL: <
> http://lists.inf.ethz.ch/pipermail/oberon/attachments/20151221/0bb81cd8/attachment-0001.p7s
> >
>
> ------------------------------
>
> Subject: Digest Footer
>
> --
> Oberon at lists.inf.ethz.ch mailing list for ETH Oberon and related systems
> https://lists.inf.ethz.ch/mailman/listinfo/oberon
>
>
> ------------------------------
>
> End of Oberon Digest, Vol 139, Issue 13
> ***************************************
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.inf.ethz.ch/pipermail/oberon/attachments/20151221/9c448219/attachment.html>


More information about the Oberon mailing list