-
Notifications
You must be signed in to change notification settings - Fork 2
/
floss-arduino.log
4743 lines (3972 loc) · 171 KB
/
floss-arduino.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This is pdfTeX, Version 3.14159265-2.6-1.40.21 (TeX Live 2020/Debian) (preloaded format=pdflatex 2023.6.1) 17 NOV 2023 10:26
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
**floss-arduino.tex
(./floss-arduino.tex
LaTeX2e <2020-10-01> patch level 4
L3 programming layer <2021-01-09> xparse <2020-03-03>
(/usr/share/texlive/texmf-dist/tex/latex/base/book.cls
Document Class: book 2020/04/10 v1.4m Standard LaTeX document class
(/usr/share/texlive/texmf-dist/tex/latex/base/bk11.clo
File: bk11.clo 2020/04/10 v1.4m Standard LaTeX file (size option)
)
\c@part=\count177
\c@chapter=\count178
\c@section=\count179
\c@subsection=\count180
\c@subsubsection=\count181
\c@paragraph=\count182
\c@subparagraph=\count183
\c@figure=\count184
\c@table=\count185
\abovecaptionskip=\skip47
\belowcaptionskip=\skip48
\bibindent=\dimen138
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
Package: color 2020/02/24 v1.2b Standard LaTeX Color (DPC)
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg
File: color.cfg 2016/01/02 v1.6 sample color configuration
)
Package color Info: Driver file: pdftex.def on input line 147.
(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def
File: pdftex.def 2020/10/05 v1.2a Graphics/color driver for pdftex
))
(/usr/share/texlive/texmf-dist/tex/latex/layouts/layouts.sty
Package: layouts 2009/09/02 v2.6d graphical depiction of document elements
\l@ylen=\skip49
\layoutsbox=\box47
\l@youtunitlength=\skip50
\l@youtlinethick=\skip51
\l@youtlinethickii=\skip52
\l@ysetupparskip=\skip53
\l@ysetupbaselineskip=\skip54
\l@yonem=\skip55
\l@yonex=\skip56
\l@ylmarg=\skip57
\l@yrmarg=\skip58
\l@yitmindent=\skip59
\l@ylblwidth=\skip60
\l@ylblsep=\skip61
\l@ylparindent=\skip62
\l@ytsep=\skip63
\l@ypskip=\skip64
\l@yptsep=\skip65
\l@ypsep=\skip66
\l@yitmsep=\skip67
\l@ytok=\toks15
\l@youtpw=\count186
\l@youtph=\count187
\l@youthpi=\count188
\l@youthpii=\count189
\l@youthpiii=\count190
\l@youthpiv=\count191
\l@youthpv=\count192
\l@youthpvi=\count193
\l@youthpvii=\count194
\l@youtparskip=\count195
\l@youtvpi=\count196
\l@youtvpii=\count197
\l@youtvpiii=\count198
\l@youtvpiv=\count199
\l@youtvpv=\count266
\l@youtvpvi=\count267
\l@youtvpvii=\count268
\l@youthdo=\count269
\l@youthdi=\count270
\l@youthdii=\count271
\l@youthdiii=\count272
\l@youthdiv=\count273
\l@youthdv=\count274
\l@youthdvi=\count275
\l@youthdvii=\count276
\l@youtvdo=\count277
\l@youtvdi=\count278
\l@youtvdii=\count279
\l@youtvdiii=\count280
\l@youtvdiv=\count281
\l@youtvdv=\count282
\l@youtvdvi=\count283
\l@youtvdvii=\count284
\l@youtvdviii=\count285
\l@youtxci=\count286
\l@youtxcii=\count287
\l@youtxciii=\count288
\l@youtxciv=\count289
\l@youtxcv=\count290
\l@youtxcvi=\count291
\l@youtyci=\count292
\l@youtycii=\count293
\l@youtyciii=\count294
\l@youtyciv=\count295
\l@youtycv=\count296
\l@youtycvi=\count297
\l@youtycvii=\count298
\l@youtycviii=\count299
\l@youtxco=\count300
\l@youtyco=\count301
\l@ytempdima=\skip68
\stockwidth=\skip69
\stockheight=\skip70
\trimedge=\skip71
\trimtop=\skip72
\uppermargin=\skip73
\spinemargin=\skip74
)
(/usr/share/texlive/texmf-dist/tex/latex/morefloats/morefloats.sty
Package: morefloats 2015/07/22 v1.0h Raise limit of unprocessed floats (HMM)
(/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty
Package: kvoptions 2020-10-07 v3.14 Key value format for package options (HO)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
\KV@toks@=\toks16
)
(/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
Package: ltxcmds 2020-05-10 v1.25 LaTeX kernel commands for general use (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
))
Package morefloats Info: Maximum number of possible floats asked for: 36
(morefloats) (i.e. 18 more floats).
(morefloats) LaTeX might run out of memory before this
(morefloats) (in which case it will notify you).
)
(/usr/share/texlive/texmf-dist/tex/latex/paralist/paralist.sty
Package: paralist 2017/01/22 v2.7 Extended list environments
\pltopsep=\skip75
\plpartopsep=\skip76
\plitemsep=\skip77
\plparsep=\skip78
\pl@lab=\toks17
)
(/usr/share/texlive/texmf-dist/tex/latex/chngcntr/chngcntr.sty
Package: chngcntr 2018/04/09 v1.1a change counter resetting
Package chngcntr Info: \counterwithout already defined.
(chngcntr) Quitting chngcntr on input line 21.
)
(/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
Package: fancyhdr 2021/01/04 v4.0 Extensive control of page headers and footers
\f@nch@headwidth=\skip79
\f@nch@O@elh=\skip80
\f@nch@O@erh=\skip81
\f@nch@O@olh=\skip82
\f@nch@O@orh=\skip83
\f@nch@O@elf=\skip84
\f@nch@O@erf=\skip85
\f@nch@O@olf=\skip86
\f@nch@O@orf=\skip87
)
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty
Package: amsmath 2020/09/23 v2.17i AMS math features
\@mathmargin=\skip88
For additional information on amsmath, use the `?' option.
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty
Package: amstext 2000/06/29 v2.01 AMS text
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty
File: amsgen.sty 1999/11/30 v2.0 generic functions
\@emptytoks=\toks18
\ex@=\dimen139
))
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
\pmbraise@=\dimen140
)
(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty
Package: amsopn 2016/03/08 v2.02 operator names
)
\inf@bad=\count302
LaTeX Info: Redefining \frac on input line 234.
\uproot@=\count303
\leftroot@=\count304
LaTeX Info: Redefining \overline on input line 399.
\classnum@=\count305
\DOTSCASE@=\count306
LaTeX Info: Redefining \ldots on input line 496.
LaTeX Info: Redefining \dots on input line 499.
LaTeX Info: Redefining \cdots on input line 620.
\Mathstrutbox@=\box48
\strutbox@=\box49
\big@size=\dimen141
LaTeX Font Info: Redeclaring font encoding OML on input line 743.
LaTeX Font Info: Redeclaring font encoding OMS on input line 744.
\macc@depth=\count307
\c@MaxMatrixCols=\count308
\dotsspace@=\muskip16
\c@parentequation=\count309
\dspbrk@lvl=\count310
\tag@help=\toks19
\row@=\count311
\column@=\count312
\maxfields@=\count313
\andhelp@=\toks20
\eqnshift@=\dimen142
\alignsep@=\dimen143
\tagshift@=\dimen144
\tagwidth@=\dimen145
\totwidth@=\dimen146
\lineht@=\dimen147
\@envbody=\toks21
\multlinegap=\skip89
\multlinetaggap=\skip90
\mathdisplay@stack=\toks22
LaTeX Info: Redefining \[ on input line 2923.
LaTeX Info: Redefining \] on input line 2924.
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
Package: graphicx 2020/09/09 v1.2b Enhanced LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
Package: graphics 2020/08/30 v1.4c Standard LaTeX Graphics (DPC,SPQR)
(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
)
(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
)
Package graphics Info: Driver file: pdftex.def on input line 105.
)
\Gin@req@height=\dimen148
\Gin@req@width=\dimen149
)
(/usr/share/texlive/texmf-dist/tex/latex/base/makeidx.sty
Package: makeidx 2014/09/29 v1.0m Standard LaTeX package
)
(/usr/share/texlive/texmf-dist/tex/latex/fancybox/fancybox.sty
Package: fancybox 2010/05/15 1.4
Style option: `fancybox' v1.4 <2010/05/15> (tvz)
\@fancybox=\box50
\shadowsize=\dimen150
\@Sbox=\box51
\do@VerbBox=\toks23
\the@fancyput=\toks24
\this@fancyput=\toks25
\EndVerbatimTokens=\toks26
\Verbatim@Outfile=\write3
\Verbatim@Infile=\read2
) (/usr/share/texlive/texmf-dist/tex/latex/cite/cite.sty
LaTeX Info: Redefining \cite on input line 302.
LaTeX Info: Redefining \nocite on input line 332.
Package: cite 2015/02/27 v 5.5
)
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
Package: hyperref 2020-05-15 v7.00e Hypertext links for LaTeX
(/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty
Package: iftex 2020/03/06 v1.0d TeX engine tests
)
(/usr/share/texlive/texmf-dist/tex/generic/pdftexcmds/pdftexcmds.sty
Package: pdftexcmds 2020-06-27 v0.33 Utility functions of pdfTeX for LuaTeX (HO
)
(/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
)
Package pdftexcmds Info: \pdf@primitive is available.
Package pdftexcmds Info: \pdf@ifprimitive is available.
Package pdftexcmds Info: \pdfdraftmode found.
)
(/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
)
(/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
)
\@linkdim=\dimen151
\Hy@linkcounter=\count314
\Hy@pagecounter=\count315
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
File: pd1enc.def 2020-05-15 v7.00e Hyperref: PDFDocEncoding definition (HO)
Now handling font encoding PD1 ...
... no UTF-8 mapping file for font encoding PD1
)
(/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
)
\Hy@SavedSpaceFactor=\count316
Package hyperref Info: Hyper figures OFF on input line 4464.
Package hyperref Info: Link nesting OFF on input line 4469.
Package hyperref Info: Hyper index ON on input line 4472.
Package hyperref Info: Plain pages OFF on input line 4479.
Package hyperref Info: Backreferencing OFF on input line 4484.
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
Package hyperref Info: Bookmarks ON on input line 4717.
\c@Hy@tempcnt=\count317
(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty
\Urlmuskip=\muskip17
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
)
LaTeX Info: Redefining \url on input line 5076.
\XeTeXLinkMargin=\dimen152
(/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
(/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO
)
))
\Fld@menulength=\count318
\Field@Width=\dimen153
\Fld@charsize=\dimen154
Package hyperref Info: Hyper figures OFF on input line 6347.
Package hyperref Info: Link nesting OFF on input line 6352.
Package hyperref Info: Hyper index ON on input line 6355.
Package hyperref Info: backreferencing OFF on input line 6362.
Package hyperref Info: Link coloring OFF on input line 6367.
Package hyperref Info: Link coloring with OCG OFF on input line 6372.
Package hyperref Info: PDF/A mode OFF on input line 6377.
LaTeX Info: Redefining \ref on input line 6417.
LaTeX Info: Redefining \pageref on input line 6421.
(/usr/share/texlive/texmf-dist/tex/latex/base/atbegshi-ltx.sty
Package: atbegshi-ltx 2020/08/17 v1.0a Emulation of the original atbegshi packa
ge
with kernel methods
)
\Hy@abspage=\count319
\c@Item=\count320
\c@Hfootnote=\count321
)
Package hyperref Info: Driver (autodetected): hpdftex.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def
File: hpdftex.def 2020-05-15 v7.00e Hyperref driver for pdfTeX
(/usr/share/texlive/texmf-dist/tex/latex/base/atveryend-ltx.sty
Package: atveryend-ltx 2020/08/19 v1.0a Emulation of the original atvery packag
e
with kernel methods
)
\Fld@listcount=\count322
\c@bookmark@seq@number=\count323
(/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
(/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
)
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
86.
)
\Hy@SectionHShift=\skip91
)
(/usr/share/texlive/texmf-dist/tex/latex/subfig/subfig.sty
Package: subfig 2005/06/28 ver: 1.3 subfig package
(/usr/share/texlive/texmf-dist/tex/latex/caption/caption.sty
Package: caption 2020/10/26 v3.5g Customizing captions (AR)
(/usr/share/texlive/texmf-dist/tex/latex/caption/caption3.sty
Package: caption3 2020/10/21 v2.2e caption3 kernel (AR)
\captionmargin=\dimen155
\captionmargin@=\dimen156
\captionwidth=\dimen157
\caption@tempdima=\dimen158
\caption@indent=\dimen159
\caption@parindent=\dimen160
\caption@hangindent=\dimen161
Package caption Info: Standard document class detected.
)
\c@caption@flags=\count324
\c@continuedfloat=\count325
Package caption Info: hyperref package is loaded.
)
\c@KVtest=\count326
\sf@farskip=\skip92
\sf@captopadj=\dimen162
\sf@capskip=\skip93
\sf@nearskip=\skip94
\c@subfigure=\count327
\c@subfigure@save=\count328
\c@lofdepth=\count329
\c@subtable=\count330
\c@subtable@save=\count331
\c@lotdepth=\count332
\sf@top=\skip95
\sf@bottom=\skip96
)
(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty
\lst@mode=\count333
\lst@gtempboxa=\box52
\lst@token=\toks27
\lst@length=\count334
\lst@currlwidth=\dimen163
\lst@column=\count335
\lst@pos=\count336
\lst@lostspace=\dimen164
\lst@width=\dimen165
\lst@newlines=\count337
\lst@lineno=\count338
\lst@maxwidth=\dimen166
(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty
File: lstmisc.sty 2020/03/24 1.8d (Carsten Heinz)
\c@lstnumber=\count339
\lst@skipnumbers=\count340
\lst@framebox=\box53
)
(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg
File: listings.cfg 2020/03/24 1.8d listings configuration
))
Package: listings 2020/03/24 1.8d (Carsten Heinz)
(/usr/share/texlive/texmf-dist/tex/latex/tools/varioref.sty
Package: varioref 2020/08/11 v1.6e package for extended references (FMi)
\c@vrcnt=\count341
)
(/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty
Package: fontenc 2020/08/10 v2.0s Standard LaTeX package
) (./beramono.sty
Package: beramono 2004/01/31 (WaS)
)
(/usr/share/texlive/texmf-dist/tex/latex/seqsplit/seqsplit.sty
Package: seqsplit 2006/08/07 v0.1 Splitting long sequences (DNA, RNA, proteins,
etc.)
)
(/usr/share/texmf/tex/latex/tfrupee/tfrupee.sty
Package: tfrupee 2010/12/15 LaTeX Support for the TechFat Rupee symbols by Tech
Fat (http://techfat.blogspot.com/2010/07/new-open-source-india-rupee-font.html)
. Adapted for use with TeX by Palle Jorgensen, hamselv(a)pallej.dk
)
(/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty
Package: textcomp 2020/02/02 v2.0n Standard LaTeX package
)
(/usr/share/texlive/texmf-dist/tex/latex/tools/xspace.sty
Package: xspace 2014/10/28 v1.13 Space after command names (DPC,MH)
)
(/home/sudhakak/Desktop/FLOSS-Arduino-Book/suppl/styles.tex
(/usr/share/texlive/texmf-dist/tex/latex/ntheorem/ntheorem.sty
Style `ntheorem', Version 1.33 <2011/08/15>
Package: ntheorem 2011/08/15 1.33
(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty
Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC)
)
\theorem@style=\toks28
\theorem@@style=\toks29
\theorembodyfont=\toks30
\theoremnumbering=\toks31
\theorempreskipamount=\skip97
\theorempostskipamount=\skip98
\theoremframepreskipamount=\skip99
\theoremframepostskipamount=\skip100
\theoreminframepreskipamount=\skip101
\theoreminframepostskipamount=\skip102
\theorem@preskip=\toks32
\theorem@postskip=\toks33
\theorem@framepreskip=\toks34
\theorem@framepostskip=\toks35
\theorem@inframepreskip=\toks36
\theorem@inframepostskip=\toks37
\theoremindent=\dimen167
\theorem@indent=\dimen168
\theoremrightindent=\dimen169
\theorem@rightindent=\dimen170
\theoremheaderfont=\toks38
\theoremseparator=\toks39
\theoremprework=\toks40
\theorempostwork=\toks41
\theoremsymbol=\toks42
\qedsymbol=\toks43
\theoremkeyword=\toks44
\qedsymbol=\toks45
\thm@topsep=\skip103
\thm@topsepadd=\skip104
)
\c@codemass=\count342
\c@ardmass=\count343
\c@pymass=\count344
\c@juliamass=\count345
\c@OpenModelicamass=\count346
(/usr/share/texlive/texmf-dist/tex/latex/listings/lstlang1.sty
File: lstlang1.sty 2020/03/24 1.8d listings language file
)
(/usr/share/texlive/texmf-dist/tex/latex/listings/lstlang1.sty
File: lstlang1.sty 2020/03/24 1.8d listings language file
)
(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty
File: lstmisc.sty 2020/03/24 1.8d (Carsten Heinz)
)
(/usr/share/texlive/texmf-dist/tex/latex/tools/theorem.sty)
\c@egmass=\count347
)
\@indexfile=\write4
\openout4 = `floss-arduino.idx'.
Writing index file floss-arduino.idx
(/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdftex.def
File: l3backend-pdftex.def 2020-01-29 L3 backend support: PDF output (pdfTeX)
\l__color_backend_stack_int=\count348
\l__pdf_internal_box=\box54
)
(./floss-arduino.aux)
\openout1 = `floss-arduino.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 125.
LaTeX Font Info: ... okay on input line 125.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 125.
LaTeX Font Info: ... okay on input line 125.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 125.
LaTeX Font Info: ... okay on input line 125.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 125.
LaTeX Font Info: ... okay on input line 125.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 125.
LaTeX Font Info: ... okay on input line 125.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 125.
LaTeX Font Info: ... okay on input line 125.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 125.
LaTeX Font Info: ... okay on input line 125.
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 125.
LaTeX Font Info: ... okay on input line 125.
(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count349
\scratchdimen=\dimen171
\scratchbox=\box55
\nofMPsegments=\count350
\nofMParguments=\count351
\everyMPshowfont=\toks46
\MPscratchCnt=\count352
\MPscratchDim=\dimen172
\MPnumerator=\count353
\makeMPintoPDFobject=\count354
\everyMPtoPDFconversion=\toks47
) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
85.
(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
e
))
Package layouts Warning: Layout scale set to 0.5 on input line 125.
Package hyperref Warning: Height of page (\stockheight) is invalid (0.0pt),
(hyperref) using 11in.
Package hyperref Info: Link coloring OFF on input line 125.
(/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section
(/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
)
(/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
)
\c@section@level=\count355
LaTeX Info: Redefining \Ref on input line 520.
)
LaTeX Info: Redefining \ref on input line 125.
LaTeX Info: Redefining \pageref on input line 125.
LaTeX Info: Redefining \nameref on input line 125.
(./floss-arduino.out) (./floss-arduino.out)
\@outlinefile=\write5
\openout5 = `floss-arduino.out'.
LaTeX Info: Redefining \Ref on input line 125.
Package caption Info: Begin \AtBeginDocument code.
Package caption Info: subfig package v1.3 is loaded.
Package caption Info: listings package is loaded.
Package caption Info: End \AtBeginDocument code.
\c@lstlisting=\count356
(./suppl/title-all.tex
<suppl/fossee_logo_hi.png, id=868, 753.2943pt x 277.9986pt>
File: suppl/fossee_logo_hi.png Graphic file (type png)
<use suppl/fossee_logo_hi.png>
Package pdftex.def Info: suppl/fossee_logo_hi.png used on input line 14.
(pdftex.def) Requested size: 86.72487pt x 32.00522pt.
<suppl/IITB-logo-HighRes.png, id=870, 716.91461pt x 687.03922pt>
File: suppl/IITB-logo-HighRes.png Graphic file (type png)
<use suppl/IITB-logo-HighRes.png>
Package pdftex.def Info: suppl/IITB-logo-HighRes.png used on input line 15.
(pdftex.def) Requested size: 57.81511pt x 55.40456pt.
<suppl/by-nc-nd.png, id=871, 97.0827pt x 33.9669pt>
File: suppl/by-nc-nd.png Graphic file (type png)
<use suppl/by-nc-nd.png>
Package pdftex.def Info: suppl/by-nc-nd.png used on input line 18.
(pdftex.def) Requested size: 43.36023pt x 15.17041pt.
[1
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map} <./suppl/fossee_logo_hi.png
> <./suppl/IITB-logo-HighRes.png> <./suppl/by-nc-nd.png>]) (./suppl/license.tex
Overfull \hbox (7.57956pt too wide) in paragraph at lines 3--7
\T1/cmr/m/n/10.95 Cre-ative Com-mons Attribution-NonCommercial-NoDerivatives
[]
Overfull \hbox (9.30634pt too wide) in paragraph at lines 3--7
\T1/cmr/m/n/10.95 for com-mer-cial pur-poses may con-tact Prof. Kan-nan Moudgal
ya.
[]
[2
]) (./floss-arduino.toc
Overfull \hbox (24.23697pt too wide) detected at line 1
\T1/cmr/bx/n/10.95 Preface
[]
Overfull \hbox (60.41727pt too wide) detected at line 2
\T1/cmr/bx/n/10.95 List of Figures
[]
Overfull \hbox (54.91568pt too wide) detected at line 3
\T1/cmr/bx/n/10.95 List of Tables
[]
Overfull \hbox (99.11014pt too wide) detected at line 4
\T1/cmr/bx/n/10.95 List of Arduino Code
[]
Overfull \hbox (83.67537pt too wide) detected at line 5
\T1/cmr/bx/n/10.95 List of Scilab Code
[]
Overfull \hbox (94.12968pt too wide) detected at line 6
\T1/cmr/bx/n/10.95 List of Python Code
[]
Overfull \hbox (77.6248pt too wide) detected at line 7
\T1/cmr/bx/n/10.95 List of Julia Code
[]
Overfull \hbox (130.26814pt too wide) detected at line 8
\T1/cmr/bx/n/10.95 List of OpenModelica Code
[]
Overfull \hbox (74.6947pt too wide) detected at line 10
\T1/cmr/bx/n/10.95 List of Acronyms
[]
[3
]
Overfull \hbox (7.88533pt too wide) in paragraph at lines 27--27
[] [][]\T1/cmr/bx/n/10.95 Communication be-tween Soft-ware and Ar-duino[] []
[]
Overfull \hbox (16.76085pt too wide) in paragraph at lines 30--30
[][] [][]\T1/cmr/m/n/10.95 Downloading and in-stalling on GNU/Linux
[]
Overfull \hbox (16.76085pt too wide) in paragraph at lines 36--36
[][] [][]\T1/cmr/m/n/10.95 Downloading and in-stalling on GNU/Linux
[]
Overfull \hbox (5.14003pt too wide) in paragraph at lines 38--38
[][] [][]\T1/cmr/m/n/10.95 Identifying Ar-duino com-mu-ni-ca-tion port
[]
Overfull \hbox (16.76085pt too wide) in paragraph at lines 47--47
[][] [][]\T1/cmr/m/n/10.95 Downloading and in-stalling on GNU/Linux
[]
Overfull \hbox (2.84691pt too wide) in paragraph at lines 52--52
[][] [][]\T1/cmr/m/n/10.95 Downloading and in-stalling GNU/Linux
[]
[4]
Overfull \hbox (16.76085pt too wide) in paragraph at lines 57--57
[][] [][]\T1/cmr/m/n/10.95 Downloading and in-stalling on GNU/Linux
[]
[5] [6] [7] [8]
Overfull \hbox (42.2769pt too wide) detected at line 241
\T1/cmr/bx/n/10.95 References
[]
)
\tf@toc=\write6
\openout6 = `floss-arduino.toc'.
(./suppl/preface.tex [9] [10
]
Underfull \hbox (badness 10000) in paragraph at lines 14--16
[]\T1/cmr/m/n/10.95 Microcontroller pro-gram-ming
[]
Underfull \hbox (badness 10000) in paragraph at lines 16--17
[]\T1/cmr/m/n/10.95 Microcontroller pro-gram-ming
[]
Underfull \hbox (badness 10000) in paragraph at lines 17--19
[]\T1/cmr/m/n/10.95 Microcontroller pro-gram-ming
[]
Underfull \hbox (badness 10000) in paragraph at lines 19--20
[]\T1/cmr/m/n/10.95 Microcontroller pro-gram-ming
[]
[11]
LaTeX Font Info: Trying to load font information for T1+fvm on input line 39
.
LaTeX Font Info: No file T1fvm.fd. on input line 39.
LaTeX Font Warning: Font shape `T1/fvm/m/n' undefined
(Font) using `T1/cmr/m/n' instead on input line 39.
Underfull \hbox (badness 10000) in paragraph at lines 52--57
[]
) [12] (./floss-arduino.lof [13
]
Overfull \hbox (16.45706pt too wide) in paragraph at lines 42--42
[][] [][]\T1/fvm/m/n/10.95 Julia's web-site to down-load 64-bit Win-dows/Linux
[]
Overfull \hbox (7.9376pt too wide) in paragraph at lines 46--46
[][] [][]\T1/fvm/m/n/10.95 Windows com-mand prompt to launch Ju-lia REPL[] [][
]
[]
Overfull \hbox (1.03885pt too wide) in paragraph at lines 47--47
[][] [][]\T1/fvm/m/n/10.95 Windows com-mand prompt to en-ter Pkg REPL
[]
[14]
Overfull \hbox (0.50832pt too wide) in paragraph at lines 64--64
[][] [][]\T1/fvm/m/n/10.95 An RGB LED with Ar-duino Uno us-ing a bread-
[]
Overfull \hbox (11.03397pt too wide) in paragraph at lines 65--65
[][] [][]\T1/fvm/m/n/10.95 LED ex-per-i-ments di-rectly on Ar-duino Uno board,
[]
[15]
Overfull \hbox (3.70221pt too wide) in paragraph at lines 98--98
[][] [][]\T1/fvm/m/n/10.95 Internal con-nec-tion di-a-grams for ther-mis-tor a
nd
[]
[16]
Overfull \hbox (3.04018pt too wide) in paragraph at lines 135--135
[][] [][]\T1/fvm/m/n/10.95 Single phase ac-tive power out-put on Scilab Con-
[]
)
\tf@lof=\write7
\openout7 = `floss-arduino.lof'.
[17] [18
] (./floss-arduino.lot [19])
\tf@lot=\write8
\openout8 = `floss-arduino.lot'.
[20] (./floss-arduino.ard [21
])
\tf@ard=\write9
\openout9 = `floss-arduino.ard'.
[22]
(./floss-arduino.cod [23
])
\tf@cod=\write10
\openout10 = `floss-arduino.cod'.
[24] (./floss-arduino.pyd
Overfull \hbox (4.15053pt too wide) in paragraph at lines 2--2
[][] [][]\T1/fvm/m/n/10.95 A Python script to check whether the firmware
[]
[25
])
\tf@pyd=\write11
\openout11 = `floss-arduino.pyd'.
[26] (./floss-arduino.juliad
Overfull \hbox (11.72147pt too wide) in paragraph at lines 1--1
[][] [][]\T1/fvm/m/n/10.95 A Ju-lia source file to check whether the firmware
[]
[27
])
\tf@juliad=\write12
\openout12 = `floss-arduino.juliad'.
[28] (./floss-arduino.OpenModelicad
Overfull \hbox (11.78917pt too wide) in paragraph at lines 1--1
[][] [][]\T1/fvm/m/n/10.95 An Open-Mod-el-ica code/-model to check whether
[]
[29
])
\tf@OpenModelicad=\write13
\openout13 = `floss-arduino.OpenModelicad'.
(./suppl/acr.tex [30]
Underfull \vbox (badness 10000) has occurred while \output is active []
[31
]
Overfull \vbox (19.84633pt too high) has occurred while \output is active []
[32])
Overfull \hbox (13.77153pt too wide) in paragraph at lines 34--165
[][]
[]
Underfull \hbox (badness 10000) in paragraph at lines 34--165
[]
[33] [34
] (./suppl/intro.tex
Chapter 1.
Overfull \hbox (16.10982pt too wide) in paragraph at lines 4--9
\T1/fvm/m/n/10.95 Microcontrollers are the foun-da-tion for a mod-ern, manufact
uring-
[]
[1
] [2]) (./user-code/hw-env/hw-env.tex [3] [4
]
Chapter 2.
Overfull \hbox (8.67784pt too wide) in paragraph at lines 24--30
\T1/fvm/m/n/10.95 dig-i-tal cir-cuit that con-tains a pro-ces-sor, mem-ory and
in-put/out-
[]
Overfull \hbox (7.76726pt too wide) in paragraph at lines 30--32
[]\T1/fvm/m/n/10.95 Automotive: Brak-ing, driver as-sist, fault di-ag-no-sis, p
ower
[]
[5]
</home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/miccontblk.
png, id=1925, 419.6478pt x 413.3844pt>
File: /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/miccon
tblk.png Graphic file (type png)
<use /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/miccont
blk.png>
Package pdftex.def Info: /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw
-env/figures/miccontblk.png used on input line 50.
(pdftex.def) Requested size: 187.90022pt x 185.09401pt.
[6 </home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/miccont
blk.png>]
Overfull \hbox (4.45892pt too wide) in paragraph at lines 76--80
\T1/fvm/m/n/10.95 Mem-ory: EEP-ROM is an op-tional non-volatile stor-
[]
[7]
Overfull \hbox (13.16347pt too wide) in paragraph at lines 111--116
[]\T1/fvm/m/n/10.95 Universal Asyn-chronous Re-ceiver/-Trans-mit-ter (UART): UA
RT
[]
</home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/resolution.
png, id=1940, 207.77625pt x 330.23375pt>
File: /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/resolu
tion.png Graphic file (type png)
<use /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/resolut
ion.png>
Package pdftex.def Info: /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw
-env/figures/resolution.png used on input line 127.
(pdftex.def) Requested size: 86.72487pt x 137.83556pt.
[8] [9 </home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/reso
lution.png>]
Overfull \hbox (0.15323pt too wide) in paragraph at lines 161--162
[]\T1/fvm/m/n/10.95 Analog out-put de-vices: Bright-ness con-trol, speaker
[]
</home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/OSHW-138px.
png, id=1959, 138.5175pt x 145.54375pt>
File: /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/OSHW-1
38px.png Graphic file (type png)
<use /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/OSHW-13
8px.png>
Package pdftex.def Info: /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw
-env/figures/OSHW-138px.png used on input line 182.
(pdftex.def) Requested size: 72.26999pt x 75.93634pt.
[10 </home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/OSHW-13
8px.png>] [11]
Overfull \hbox (8.18529pt too wide) in paragraph at lines 228--232
\T1/fvm/m/n/10.95 nounced \T1/cmr/m/it/10.95 The An-droid Open Ac-ces-sory De-v
el-op-ment Kit (ADK)\T1/fvm/m/n/10.95 ,
[]
</home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/arduino.png
, id=1989, 585.18625pt x 221.82875pt>
File: /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/arduin
o.png Graphic file (type png)
<use /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/arduino
.png>
Package pdftex.def Info: /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw
-env/figures/arduino.png used on input line 254.
(pdftex.def) Requested size: 260.17021pt x 98.62715pt.
Underfull \hbox (badness 3396) in paragraph at lines 272--273
[]\T1/fvm/m/n/10.95 32 KB (AT-mega328),
[]
</home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/mega.jpg, i
d=1992, 481.8pt x 316.7835pt>
File: /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/mega.j
pg Graphic file (type jpg)
<use /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/mega.jp
g>
Package pdftex.def Info: /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw
-env/figures/mega.jpg used on input line 293.
(pdftex.def) Requested size: 187.90022pt x 123.54022pt.
</home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/lily.jpg, i
d=1995, 321.2pt x 321.2pt>
File: /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/lily.j
pg Graphic file (type jpg)
<use /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/lily.jp
g>
Package pdftex.def Info: /home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw
-env/figures/lily.jpg used on input line 304.
(pdftex.def) Requested size: 130.0851pt x 130.08528pt.
[12] [13 </home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/ar
duino.png>]
</home/sudhakak/Desktop/FLOSS-Arduino-Book/user-code/hw-env/figures/arduino-pho