Displaying 6 results from an estimated 6 matches for "dsp56k".
Did you mean:
dsp55
2003 Aug 19
1
Oen source IP phone, maybe?
...wonder how hard/cost effective it would be to build an open
source IP phone or phone adapter (ala ATA).
In about 20 minutes of mulling and research, I figure you could do it for
about $40 in parts plus coding time...
1 DS80C400 Ethernet enabled microcontroller with built in IPV4/V6 stack
$10
1 DSP56K hardware DSP (you may even be able to dispense with this if the
C400 is fast enough to do the codecing...then you just need a 8 or 16 bit
DAC/ADC) $10
Misc parts/case/whatnot $20.
2003 Aug 19
2
Re: Open source IP phone, maybe?
...t would be to build an open
>source IP phone or phone adapter (ala ATA).
>
>In about 20 minutes of mulling and research, I figure you could do it for
>about $40 in parts plus coding time...
>
>1 DS80C400 Ethernet enabled microcontroller with built in IPV4/V6 stack
>$10
>1 DSP56K hardware DSP (you may even be able to dispense with this if the
>C400 is fast enough to do the codecing...then you just need a 8 or 16 bit
>DAC/ADC) $10
>Misc parts/case/whatnot $20.
>
>
2003 Aug 19
0
Re: Open source IP phone, maybe?
...source IP phone or phone adapter (ala ATA).
>>
>> In about 20 minutes of mulling and research, I figure you could do it
>> for about $40 in parts plus coding time...
>>
>> 1 DS80C400 Ethernet enabled microcontroller with built in IPV4/V6
>> stack $10
>> 1 DSP56K hardware DSP (you may even be able to dispense with this if
>> the C400 is fast enough to do the codecing...then you just need a 8
>> or 16 bit DAC/ADC) $10
>> Misc parts/case/whatnot $20.
>>
>>
>
>
>
>
> _____________________________________________...
2016 Dec 06
0
[PATCH 10/10] virtio: enable endian checks for sparse builds
...$(CONFIG_BLK_DEV_SX8) += sx8.o
diff --git a/drivers/char/Makefile b/drivers/char/Makefile
index 6e6c244..a99467d 100644
--- a/drivers/char/Makefile
+++ b/drivers/char/Makefile
@@ -6,6 +6,7 @@ obj-y += mem.o random.o
obj-$(CONFIG_TTY_PRINTK) += ttyprintk.o
obj-y += misc.o
obj-$(CONFIG_ATARI_DSP56K) += dsp56k.o
+CFLAGS_virtio_console.o += -D__CHECK_ENDIAN__
obj-$(CONFIG_VIRTIO_CONSOLE) += virtio_console.o
obj-$(CONFIG_RAW_DRIVER) += raw.o
obj-$(CONFIG_SGI_SNSC) += snsc.o snsc_event.o
diff --git a/drivers/char/hw_random/Makefile b/drivers/char/hw_random/Makefile
index 5f52b1e..a2b0931 1006...
2016 Dec 06
26
[PATCH 00/10] virtio: sparse fixes
I run latest sparse from git on virtio drivers
(turns out the version I had was rather outdated).
This patchset fixes a couple of bugs this uncovered,
and adds some annotations to make it sparse-clean.
In particular, endian-ness is often tricky,
so this patchset enabled endian-ness checks for sparse
builds.
Michael S. Tsirkin (10):
virtio_console: drop unused config fields
drm/virtio: fix
2016 Dec 06
26
[PATCH 00/10] virtio: sparse fixes
I run latest sparse from git on virtio drivers
(turns out the version I had was rather outdated).
This patchset fixes a couple of bugs this uncovered,
and adds some annotations to make it sparse-clean.
In particular, endian-ness is often tricky,
so this patchset enabled endian-ness checks for sparse
builds.
Michael S. Tsirkin (10):
virtio_console: drop unused config fields
drm/virtio: fix