-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathrelease_notes.txt
More file actions
1150 lines (881 loc) · 38.5 KB
/
Copy pathrelease_notes.txt
File metadata and controls
1150 lines (881 loc) · 38.5 KB
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
Cirrus Logic Alt-OS Driver SDK
Release Notes
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.30.6
Date: 2026/08/13
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Add export firmware format support to CS40L26 baremetal example
Add firmware_block name option to firmware_converter export format
Fixed Bugs:
Add broadcast support to CS40L5X regmap writes
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.30.5
Date: 2026/08/03
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Add ff_cirrus style OWT writing to CS40L5X owt_demo sample application
Add waveform length field to PWLE OWT driver API
Change host initated haptic effect length calculation to no longer require .hwt
Modify CS40L5X Audio2haptics sample application to use zephyr shell commands
Add Vibecomp tuning and demo commands to CS40L5X audio2haptics sample app
Fixed Bugs:
Removed unecessary PLL openloop settings change in CS35L56 sample
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.30.4
Date: 2026/07/14
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Refactor CS40L50/5X PWLE/PCM OWT driver APIs
Add owt_demo sample applications for CS40L50/5X
Add A2H tuning/app state to CS40L26 baremetal application
Add CS40L50/5X firmware v4.0.7
Fixed Bugs:
Fix bug with metadata table ender in OWT waveforms
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.30.2
Date: 2026/06/26
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Improve documentation and formatting for cs35l56 and cs40l5x
Add App Note PDFs
Minor bugfixes for cs40l50 and cs40l5x
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.30.1
Date: 2026/06/03
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Add CL_MCU platform support
Add Audio2haptics sample application for CS40L5X
Add set gain function to CS40L50 baremetal bsp
Fixed Bugs:
Remove explicit interal boost configuration from CS40L50/5X driver
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.29.7
Date: 2026/05/22
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
Fixed Bugs:
Fix issue with filtering other PWLE waveforms in host initiated haptics applications
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.29.6
Date: 2026/05/08
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Add example baremetal sample application for CS35L56 Driver
Fixed Bugs:
Fix blackstar project compatability with rth waveform datastructure changes
Fix conflict with upstream zephyr in CS40L50 zephyr example overlays
Fix bug in rapid repeated triggers in host initiated haptics API
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.29.5
Date: 2026/04/27
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
Fixed Bugs:
Expose Host Initiated Haptics tunings and wavetable to public repo
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.29.4
Date: 2026/04/17
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Reorganize Host Initiated Haptics API in CS40l50 + CS40l5X BSP
Rename 'Sweep' to 'Grow' in HIH sample applications
Add basic sample_app to CS40l5X sample applications
Add microsoft ID support into hwt_converter for HIH applications
Fixed Bugs:
Fix algorithm blacklisting in firmware_converter for Jamerson/Peart ROM mode
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.29.3
Date: 2026/03/20
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Add interrupt error handling example to CS40L5X baremetal project
Add OWT API to CS40L5X driver
Create CS40L5X Host Initiated Haptics sample application
Improve zephyr sample application documentation
Fixed Bugs:
Fix Zephyr build warnings in various sample apps
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.29.1
Date: 2026/02/23
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
Fixed Bugs:
Force CS40L5X boot to wait for HALO_RUNNING
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.29.0
Date: 2026/02/20
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Add CS35L56 MCU driver and sample application
Add DSP State/Error check function to CS40L5X driver and baremetal app
Fixed Bugs:
Fix IRQ to event mapping in CS40L50 Driver
Change CS40L50 host initiated haptics app to account for SVC tone length
Reduce redundant I2C transactions in CS40L50 host initiated haptics app
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.28.3
Date: 2026/01/23
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Add OWT API into CS40L50 Driver
Add Host Initiated Haptics zephyr sample project
Update makefile to call "python" instead of "python3"
Clean up copyright headers in zephyr projects
Align reset line in zephyr sample applciation with other sdk examples
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.27.7
Date: 2025/12/12
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Improvements to Diagnostics sample
Firmware converter prints export size
Update CS40L5x and CS40L50 firmware
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.27.5
Date: 2025/11/12
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
Fixed Bugs:
Fix visibility for *_baremetal BSP files
STMCubeIDE build fixes
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.27.4
Date: 2025/11/11
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
Fixed Bugs:
Add missing blackstar main to cs40l5x
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.27.3
Date: 2025/11/11
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Add STMCubeIDE config for cs40l5x
Add blackstar target for cs40l5x
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.27.2
Date: 2025/11/07
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
ASP streaming for CS40l50
Improved diagnostics measurement for CS40L50
ASP Streaming and Diagnostics Zephyr sample apps
Support for CS40L5x automotive Jamerson variants
Separate baremetal BSPs for CS40L50 and CS40L5x
Ability to blacklist coefficient data from conversion by algorithm name
Fixed Bugs:
Prevent unnamed symbols from being created during fw_img_v2 conversion
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.26.2
Date: 2025/09/26
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
WISCE script converter will separate symbols and registers
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.26.0
Date: 2025/09/12
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
CS40L50 Diagnostics
Firmware converter won't assign indexes with --preserve-filename option
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.25.3
Date: 2025/09/09
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Update CS40L50 internal boost errata
Enforce word alignment in fw_img
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.25.2
Date: 2025/08/14
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
cs40l26: Add Amplifier defines
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.25.1
Date: 2025/07/03
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
158f5ca firmware_converter: Add symbols for PM sequence words
365c139 cs40l26: fix wseq init table
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.25.0
Date: 2025/06/19
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Add additional defines for GPIO registers and fields in cs40l50_spec.h
Example code for managing multiple tuning sets in the CS40L50 BSPs
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.24.2
Date: 2025/04/25
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Add RAM loading to cs40l50 Zephyr sample
Fixed Bugs:
Fix RAM loading for cs40l50
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.24.1
Date: 2025/02/21
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Update cs40l50 init tables
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.24.0
Date: 2025/01/17
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Baremetal target for CS40L50
05cc369 SDK release 4.24.0: updated copyrights and fixed whitespaces
ad17de3 cs40l50: Optimize driver features
eb995b1 cs40l50: Minimize firmware load
d773e90 cs40l50: Enable RAM FW conversion
9db8c9f cs40l50: Add baremetal target
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.23.2
Date: 2024/12/13
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Zephyr sample applications for CS40L50
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.22.2
Date: 2024/10/29
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
a712457 SDK release 4.22.2: updated copyrights and fixed whitespaces
88dd3fc cs40l26: Additional register defines
e1ead6d cs40l50: blackstar: Remove duplicate driver
c635237 firmware_converter: Rename coeff total blocks
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.22.1
Date: 2024/10/04
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Firmware converter updates
5208a00 SDK release 4.22.1: updated copyrights and fixed whitespaces
2233039 firmware_converter: Omit structs from JSON
7f515b4 firmware_converter: Preserve Filename option
ffa25aa firmware_converter: Comment size of large controls
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.22.0
Date: 2024/09/06
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Additional register defines for cs35l42 and cs40l26
Updated firmware for cs35l42
c48d03c SDK release 4.22.0: updated copyrights and fixed whitespaces
cc55b0b cs40l50: Set broadcast at wake
4fe6bd2 cs40l50: Move F0 and ReDC
9bc0c5a cs35l42: Update firmware
429d324 cs40l26: Addtitional register defines
51bb155 cs35l42: Add GPIO register defs
99631ee cs35l42: Fix DSP Inputs
b9c30bd cs35l42: Remove expected ReDC
Fixed Bugs:
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.21.0
Date: 2024/05/28
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Jamerson: I2C Broadcast
b3fdd5e SDK release 4.21.0: updated copyrights and fixed whitespaces
dbc93c6 cs40l50: blackstar: Broadcast enable function
b5b5ea7 cs40l50: I2C Broadcast
feb4dff platform_bsp: blackstar: Handle broadcast I2C address
9451b1d platform_bsp: blackstar: Add I2C 2 Device
c07b067 cs35l42: Add I2S Port to Freertos main
cdf059a [SQA-8026] cs35l42: update firmware to 7.16.2
834cc9f [SQA-8026] cs35l42: Add missing wakeup configuration
c6696c2 common: get rid of caddr_t
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.20.0
Date: 2023/06/27
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[DRV-6323] firmware_converter: Updated supported devices
Fixed Bugs:
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.19.0
Date: 2023/04/07
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[SQA-2120] cs47l63: SCC trigger, download, decode and playback use-case
[SQA-2054] cs47l63: Implement compressed buffer API
[SQA-2054] common: Add ringbuffers
[SQA-2054] common: Compressed buffer API
[DRV-5891] cs40l50: Added driver API for F0 calibration, RAM FW download, Dynamic F0
[DRV-5958] cs40l50: support MBOX interrupts, event_handler
[DRV-5890] cs40l50: Implemented GPI trigger configuration
[DRV-6026] cs40l26: Added standalone wavetable loading.
[DRV-6027] cs40l26: Added polling for IRQ
[DRV-6082] cs40l26: Implement OWT loading, triggering, reset
[DRV-5971] cs40l26: Added support for Dynamic F0
[DRV-5948] cs40l26: Added click compensation
[DRV-5979] cs40l26: Implementing I2S streaming
Fixed Bugs:
test_tone_tables: fixed support for 100Hz
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.18.0
Date: 2022/10/19
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
cs35l42: changed dut_boot() for easier integration in stereo use case
cs40l26: Added bridge support
cs40l26: Add support for MBOX queue
cs40l26: add GPI controlled mute
cs40l50: Add RAM wavetable triggering
cs40l50: Add power API
cs40l50: Add API to set ReDC and F0
cs40l50: Add set timeout_ticks API
cs40l50: Add A1 errata and device configurations
cs40l50: Updated wt.bin and added cs40l50_wt.bin
firmware_converter: tidy up cmd line options for ROM
Fixed Bugs:
firmware_converter: handle nopad Halo files
cs40l26: Fix missing 'extern C' bracket
cs40l50: Corrected incorrect calibration value
tools: Fix issues with blackstar .launch
tools: Fixed incorrect PCM ReDC value from hwt_to_waveform tool
common: Added missing platform_bsp files for blackstar
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.17.0
Date: 2022/07/16
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[SQA-2028] Added cs40l50 driver
[SQA-2649] Added hwt_to_waveform_converter to convert .hwt to .c and .h files
[SQA-2610] common: Add better warning for missing firmware files
[SQA-2704] firmware_converter - Add CS47L24 support
[SQA-2461] cs40l26: Added buzzgen api
[DRV-5704] cs40l26: Reading ROM w/ RAM wavetable
[SQA-2460] cs40l26: Added events to handler.
Fixed Bugs:
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.16.0
Date: 2022/06/24
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
[SQA-2384] firmware_converter: Add wmfw v1 support
[SQA-2700] firmware_converter: fix algorithm_description text collection
[SQA-2568] common: add switch to enable/disable multichannel UART
[SQA-2462] cs40l26: Added the allow/prevent hibernate function
[SQA-2695] CS40L25: Bridge not being compiled
Fixed Bugs:
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.15.0
Date: 2022/05/06
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[SQA-2673] L41 - Added configurable wake source
[SQA-2626] cs35l42: Implement calibrate()
Fixed Bugs:
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.14.0
Date: 2022/04/11
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
L41 freertos: Increase size of Stack and Heap
[SQA-2625] L41 - fixed INTb triggering IRQ callback
[SQA-2676] L41 - handle calibration ReDC out of range
[SQA-2625] cs35l42: Implement event_handler
[SQA-2624] cs35l42: Implement power() part 2
[SQA-2623] cs35l42: Implement boot()
[SQA-2653] Initialise ret variable in mem_ena and mem_dis functions
Fixed Bugs:
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.13.0
Date: 2022/03/12
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[SQA-2615] cs47l35: Add bridge support
[SQA-2627] cs35l41: Add bridge support
[SQA-2629] bridge: Added integration documentation
[SQA-2648] cs40l26: Changed the current RTH structure to support chirp and half-cycle
[SQA-2648] cs40l26: Updated to the example waveforms and LED status for holdout example
Fixed Bugs:
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.12.0
Date: 2022/02/28
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[SQA-2402] cs40l26: added support for the Holdout hardware platform
[SQA-2496] cs40l26: added initial support for Run-Time Haptics (RTH)
[SQA-2620] Added driver for cs35l42 to support dsp-bypass
Fixed Bugs:
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.11.0
Date: 2022/02/04
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
Added cs47l63 driver
firmware_converter: added support for loading arbitrary binary blobs
bridge: Move smcio.py and bridge.c to use binary instead of ASCII
bridge: added message protocol version between MCU and agent
bridge: variable BlockWrite chunk size
bridge: Improve smcio packet encapsulation and bridge format
Fixed Bugs:
bridge: fixed timeout & speed args when creating serial com port
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.10.0
Date: 2021/11/12
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[SQA-2470] Bridge: Add more flexibile naming of bridge systems
[SQA-2534] firmware_converter: skip 'DUMMY' symbols for export cmd
Fixed Bugs:
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.9.0
Date: 2021/11/02
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[SQA-2534] firmware_converter: remove duplicate and "DUMMY" symbols from firmware symbol header file
[SQA-2409] L25 - added 'live_oak' makefile and hardware target
[SQA-2533] cs47l35: Improve opus ringbuffer init
[SQA-2409] Added create_ide_projects to create IDE projects
[SQA-2409] Update build system to support multiple HW platforms
Fixed Bugs:
[SQA-2462] L26 - Fixed race condition reading DSP state transition.
[SQA-2462] L26 - Fixed failure calling called power(state) while in the same state returning FAIL.
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.8.0
Date: 2021/10/19
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[SQA-2197] cs47l63: Add errata
[SQA-2304] cs47l67: Add SPI flash read and write commands
[SQA-2353] cs47l67: wisce_script_converer: Add support for processing SCS's activity output
[SQA-2501] wisce_script_converter: should return 0 instead of None
[SQA-2353] wisce_script_converter: SCS CSV activity output Add unit-test
[SQA-2353] wisce_script_converter: Add support for SCS's CSV activity output
[SQA-2473] wisce_script_converter: Fix -s option with c_functions output
[SQA-2197] cs47l63: Add patches
[SQA-2498] firmware_converter: Fix erroneous space in FWID when <6
[SQA-2468] cs47l35: Update silkcoder to 1.1.3
[SQA-2476] common: bridge: keep getting data from bridge file until newline
[SQA-2467] common: Only release a packet to fifo consumers when complete
[SQA-2453] Switch 'is' operations to '==' for literals
[SQA-2452] Fix double free in bsp_dut_boot
[SQA-2304] Add SPI flash read and write commands
Fixed Bugs:
[SQA-2473] wisce_script_converter: the -s option does not work with c_functions output
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.7.0
Date: 2021/08/27
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[SQA-2041] Added cs40l26 driver for ROM mode
[SQA-2376] cs47l35: Update to latest Opus firmware
[SQA-2373] firmware_converter: Add no-sym-table option
[SQA-2385] firmware_converter: Add --sym-partition option
[SQA-2417] wisce_script_converter: add standalone comments to c_array
[SQA-2368] cs47l67: Make mandatory stdout/bridge filenames optional arguments
[SQA-2354] wisce_script_converter: change c_array size definition
Fixed Bugs:
[SQA-2375] bridge: make Ctrl+C stop the bridge
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.6.0
Date: 2021/08/06
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[SQA-2324] L67: free up some more memory after boot complete
[SQA-2324] L63, L67: FLL code make more efficient
[SQA-2383] L35: Add SC Voice and route mic audio through it to Opus
[SQA-2365] CS47L63: Add BoardHardwareID tags for bridge xml files
[SQA-2354] L67, L63 - Ported to regmap
[SQA-2387] L25 - added comment to cs40l25_power to clarify power_down
[SQA-2356] Renamed all fw_* folders to fw
[SQA-2386] L25 - gpio_detect is sampled only at fw init
[SQA-2320] L25 - added AN0511R1 PDF
[SQA-2320] L25 - made wrapper for write_acked_fw_control
[SQA-2369] Bridge: autodetect com port for Windows
[SQA-2352] wisce_script_converter: add a comment when loading commands from another file
[SQA-2354] wisce_script_converter: alternative c_array format.
[SQA-2354] L35, L15 - Ported to regmap
Fixed Bugs:
[SQA-2386] L25 - Fix update of GPIO_BUTTONDETECT
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.5.0
Date: 2021/07/15
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[SQA-1539] Shortened REGMAP_GET_CP_CONFIG to REGMAP_GET_CP
[SQA-2362] firmware_converter - added option to check WMDR fw revision against WMFW
[SQA-2320] L25 - ported to regmap, refactored unused code
[SQA-2350] L67 - Add bridge support
[SQA-2299] bridge/smcio: Changes to improve performance
[SQA-2302] L67 - Example code for E2E communication
[SQA-2322] L67 - test for configuring already active FLL
Fixed Bugs:
[SQA-2346] firmware_converter - binary output misses image version and has incorrect checksum
[SQA-2319] L25 - No method for ReDC-Compensation
[SQA-2372] Bridge: Fix agent does not handle multi-chip on block-writes
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.4.0
Date: 2021/06/25
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[SQA-2085] Added regmap common module
[SQA-1554] L41 - ported to regmap
[SQA-2320] L41 driver refactored unused functionality
[SQA-2061] Added WISCE/StudioBridge target implementation, including virtual register map
[SQA-2300] CS47L67 - single FreeRTOS project, support for M2 minicard
[SQA-2315] wisce_script_converter - support for named lookups
[SQA-2314] wisce_script_converter - support for LOAD commands
Support for CS40L30 driver removed
Fixed Bugs:
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.3.0
Date: 2021/06/02
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[SQA-2294] bridge_agent made more robust
Fixed Bugs:
[SQA-2316] L41 - was calling notification_cb twice
[SQA-2313] wisce_script_converter - rmodw fix
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.2.0
Date: 2021/05/19
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
L25 - Added support for 8kHz I2S streaming
[SQA-2061] Bridge - added example Python code to demonstrate WISCEBridge
[SQA-2122] Added Git submodule for STM32F4Cube for building example projects
[SQA-2122] Deprecated use of component versions - all references now to SDK version
[SQA-2057] wisce_script_converter - added option for C function output
Fixed Bugs:
[SQA-2282] L41 - Fixed bug in wake from hibernate
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v4.1.0
Date: 2021/04/30
Component Driver Versions:
CS35L41 - v4.1.0
CS40L25 - v2.3.0
CS47L15 - v2.1.0
CS40L30 - v0.1.0
Component Tool Versions:
firmware_converter - v3.2.0
wisce_script_converter - v1.2.0
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[SQA-2043] L15 - new FLL api
[SQA-1986] L15 - MP3 compressed upload
[SQA-1746] L41 - Add GPIO set
[SQA-1695] L25, L41, L30 - deprecated create_syscfg_regs.exe
[SQA-1695] L25, L41 - update register read/write API regmap functions public
[SQA-1695] L25 - update main.c to conform to appnote flowchart
[SQA-2080] firmware_converter - Automatically update correct year in copyright comments
[SQA-2123] Make fw_img files at compile time
[SQA-2248] L30 - deprecate control() API, update to latest FW Drop 37
fw_img: Rename fw_img_v1 files to fw_img
[SQA-2248] L30/L25 - fixed freertos main() ordering
Fixed Bugs:
[SQA-2042] L25 - fixed bug in cs40l25_power, cs40l25_update_haptic_config
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v3.1.0
Date: 2020/12/21
Component Driver Versions:
CS35L41 - v3.1.0
CS40L25 - v2.1.0
CS47L15 - v1.0.0
Component Tool Versions:
firmware_converter - v3.1.0
wisce_script_converter - v1.1.0
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[SQA-1936] fw_img: Add fw_img v2
[SQA-1977] Implement first release of CS47L15 driver
[SQA-1995] L41 - Implemented fast Fs switching
Fixed Bugs:
None
=============================================================================
=============================================================================
Summary:
This is the release of Alt-OS Driver SDK v3.0.0
Date: 2020/10/19
Component Driver Versions:
CS35L41 - v3.0.0
CS40L25 - v2.0.0
Component Tool Versions:
firmware_converter - v3.0.0
wisce_script_converter - v1.0.0
Architectures/Compilers Used:
GNU Arm Embedded Toolchain: arm-none-eabi-gcc -mcpu=cortex-m4
New Features/Changes:
[SQA-1829] Fixed use of malloc in FreeRTOS example
[SQA-1869] L41 - Update errata per latest Linux driver B2 errata
[SQA-1870] Added WISCE script workflow - wisce_script_converter
[SQA-1872] firmware_converter - fw_img_v1 output header and source
[SQA-1874] L41 - BSP boot using separate fw_img for FW, TUNE, CAL
[SQA-1880] L41 - fixed BSP mixing/added set dig gain
[SQA-1880] L41 - read CAL_R even if failed
[SQA-1889] Standardized *_control() API and hardware register/firmware control access
[SQA-1889] L25 - Move haptic trigger/config code from BSP to driver
[SQA-1892] All drivers - added helpers, removed fa_list[]