2022-04-25
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2022-04-25相关的知识,希望对你有一定的参考价值。
参考技术A 从ESP32看ES8388低功耗音频芯片1、ES8388 简介
ES8388是一种高性能、低功耗、低成本的音频编解码器。它由两路ADC,2通道DAC,话筒放大器、耳机放大器、数字音效、模拟混合和增益功能。
ES8388采用先进的多位Δ∑调制技术实现数字与模拟之间的数据转换。多比特Δ∑调制器使器件对时钟抖动和低带外噪声的灵敏度低。它应用于:MID,MP3, MP4, PMP,无线音频,数码相机,摄像机,GPS领域,蓝牙,便携式音频设备。
因为具有双路特性。
ADC特点为:24位,8千赫到96千赫取样频率;95分贝动态范围,95分贝信噪比,85分贝THD + N;立体声或单麦克风接口与麦克风放大器;自动电平控制和噪声门;2模拟输入选择;各种模拟输入混合和增益。
DAC特点为:24位,8千赫到96千赫取样频率;动态范围为96 dB,96 dB的信噪比,83分贝THD + N;40毫瓦耳机放大器无噪音的;耳机无模式;立体声增强;各种模拟输出混合并获得Low Power等等
1.1 参考资料
ESP-ADF源码
ES8388 数据手册
2、ES8388
2.1 ES8388 Pin脚
I2C/SPI控制接口Pin脚(蓝色pin脚)
I2C/SPI_CLK 输入I 28脚 控制时钟输入,同步时钟
I2C/SPI_DAT 输入输出I/0 27脚 控制数据输入输出
I2C_AD/SPI_CE 输入I 26脚 控制悬着或设备地址选择
音频接口(绿色)
MCLK 输入I 1脚 主时钟,必须等于fs(音频采样率)的256倍
SCLK 输入输出I\O 5脚 音频数据位时钟 用于同步
LRCK 输入输出I\0 7脚 音频数据左右声道对齐时钟
DSDIN 输入I 6脚 DAC音频数据
ASDOUT 输出0 8脚 ADC音频数据
一般使用ES8388作为从机,接收LRCK和SCLK。I2S接口支持左(left justify serial)音频数据格式、右(right justify serial)音频数据格式、飞利浦(I2S)音频数据格式、DSP/PCM模式音频数据格式。这里我们采用I2S音频数据格式16bit数据格式。
I2S标准模式,数据在跟随LRCK输出的BCLK的第二个上升沿时传输MSB,其他位一直到LSB按顺序传输。
传输依赖于字长、BCLK频率和采样率,在每个采样的LSB都和下一个采样的MSB之间都应该有未用的BCLK周期。
图中,fs即音频信号的采样率,LRCK的频率就是音频信号的采样率。MCLK的频率必须等于256f,也就是音频采样率的256倍。
ES8388内部有很多的模拟开关,用于选择通道,同时有很多的调节器,用于设置增益和音量。
重要的要
设置ROUT1EN和LOUT1EN,使能耳机输出.....
LOUT2EN 和ROUT2En,使能喇叭输出
左右声道混合器使能、使能左右声道DAC
设置字长、I2S音频数据格式
设置增益 音量
/****************************************************************************************************************************************/
ES8388微控制器的配置接口有I2C和三线SPI,这里主要讲述I2C。
ES8388 I2C的特点
1、SDA数据传输以字节为单位同步到SCL时钟上,每一位在SCL高电平期间采样;
2、从MSB位开始传输;
3、一个字节后跟一个接受方接收到的应答位;
4、传输速率可达100k bps.
芯片地址为0x20(CE=0)/0x22 (CE=0) /0b001000x?(x=PIN CE) ? 读写
与I2C协议不同之处在于从一个寄存器中读取数据,你必须先设置R/W wei为0来访问这个寄存器地址,在设置R/W位为1来从寄存器中读取数据。
写和读寄存器操作图
2.2时钟模式和采样频率
处于从模式时,LRCK和SCL有外部提供,且必须由系统时钟同步派生得到。根据下表,设备自动检测MCLK/LRCK的比率。
3、根据ESP-ADF源码中audio_hal/driver/esp8388中的es8388源码来学习操作ES8388的方法
3.0 ESP-ADF的audio_hal层主要操作包括哪些
初始化media编解码芯片驱动
audio_hal_handle_t audio_hal_init(audio_hal_codec_config_t* audio_hal_conf, int index);
解除初始化media编解码芯片驱动
esp_err_t audio_hal_deinit(audio_hal_handle_t audio_hal, int index);
启动或停止编解码芯片驱动,设置模式、启停
esp_err_t audio_hal_ctrl_codec(audio_hal_handle_t audio_hal, audio_hal_codec_mode_t mode, audio_hal_ctrl_t audio_hal_ctrl);
设置I2S接口采样率和位宽以及I2S或PCM/DSP 格式
esp_err_t audio_hal_codec_iface_config(audio_hal_handle_t audio_hal, audio_hal_codec_mode_t mode, audio_hal_codec_i2s_iface_t* iface);
获取或设置音量
esp_err_t audio_hal_set_volume(audio_hal_handle_t audio_hal, int volume);
esp_err_t audio_hal_get_volume(audio_hal_handle_t audio_hal, int* volume);
因此对于特定的编解码芯片要根据上述函数功能来实现其对应操作。当然我们的ES8388也不例外。
看看范例中对ESP8388的初始化启动过程
ESP_LOGI(TAG, "[ 2 ] Start codec chip");
audio_hal_codec_config_t audio_hal_codec_cfg = AUDIO_HAL_ES8388_DEFAULT();
audio_hal_codec_cfg.i2s_iface.samples = AUDIO_HAL_44K_SAMPLES;
audio_hal_handle_t hal = audio_hal_init(&audio_hal_codec_cfg, 0); //ES8388芯片初始化
audio_hal_ctrl_codec(hal, AUDIO_HAL_CODEC_MODE_DECODE, AUDIO_HAL_CTRL_START); //启动编解码芯片
接下去详细分析这些操作内部做了些什么,方便我们利用这些API更好的操纵芯片以实现我们需要的功能。
模板与泛型编程
16.1.1函数模板
//template parameter list templateint compare(const T1& v1, const T2&v2) { if (v1 < v2) return -1; if (v2 < v1) return 1; return 0; }
When we call a function template, the compiler (ordinarily) uses the arguments of the call to deduce the template parameter(s) for us.
The compiler uses the deduced template parameter(s) to instantiatea specific version of the function for us.
模板类型参数
函数模板的参数列表必须明确标明typename或者class,两个是同义的(typename在模板引入C++之后才出现,很多早先的程序使用class)
非类型模板参数
// 整数 templateint compare(const char(&p1)[N], const char(&p2)[M]) { strcpy(p1,p2); } // 指针 template<const char* C> void func1(const char* str) { cout << C << " " << str << endl; } // 引用 template<char(&R)[9]> void func2(const char* str) { cout << R << " " << str << endl; } // 函数指针 template<void(*f)(const char*)> void func3(const char* c) { f(c); } void print(const char* c) { cout << c << endl; } char arr[9] = "template"; // 全局变量,具有静态生存期 int main() { func1 ("pointer"); func2 ("reference"); func3 ("template function pointer"); return 0; }
绑定到非类型整型的实参必须是一个常量表达式,绑定到指针或引用的非类型参数的实参必须有静态的生存期(比如全局变量)
inline和constexpr的函数模板
templateinline int compare(const T1& v1, const T2&v2); template constexpr int compare(const T1& v1, const T2&v2);
对于函数模板,编译器可以通过参数推断,得出模板中的类型信息,因而在使用函数模板时可以省略
16.1.2类模板
对于函数模板,编译器可以通过参数推断,得出模板中的类型信息,因而在使用函数模板时可以省略
- 类模板中,模板参数被被当做stand-ins(替身),使用时被替换
- 类模板中的成员函数只有在使用时才会被实例化,这使的某种类型即使不完全符合模板要求,仍然可以使用该类型的模板。
- 实例化后的类型为ClassName
类型。 - 类包含友元时,模板类包含非模板友元,则友元可以访问模板的所有类型实例;友元是模板,则所有的友元实例都可以访问模板类的所有实例。
- 对于static成员,每一个不同类型实例,都有不同的static成员,相同类型的实例实例化出来的对象共享static成员。
#include#include using namespace std; template class BlobPtr;// forward declarations needed for friend declarations in Blob template class Blob; // needed for parameters in operator== template bool operator==(const Blob &, const Blob &); template class Blob { // each instantiation of Blob grants access to the version of // BlobPtr and the equality operator instantiated with the same type friend class BlobPtr ; friend bool operator== (const Blob &, const Blob &); public: using size_type = vector ::size_type; //construct function Blob():data(make_shared
16.1.3模板参数
模板参数的作用域在声明之后定义结束之前。
模板参数可以覆盖外部作用域的类型参数。
模板参数可以有默认值
使用类的类型成员时需要使用typename关键字,如typename T::value_type()
//默认模板参数 templateint> //使用参数类型的类型成员作为返回值的类型 typename vector ::size_type differ(vector & lh, vector & rh) { return lh.size() - rh.size(); }
16.1.4类的成员也可以是模板
普通类中的成员可以为模板
模板类中的成员可以为模板
//为了在unique_ptr析构对象的时候打印出来信息 class DebugDelete { public: DebugDelete(std::ostream&s = std::cerr) :os(s) {} templatevoid operator()(T*p)const { os << "deleting unique_ptr" << std::endl; delete p; } private: std::ostream &os; }; int main() { //会生成一个int版本的DebugDelete实例 unique_ptr<int, DebugDelete> p(new int, DebugDelete()); return 0; }
16.1.5控制实例化
模板被使用的时候才会实例化,其实例可能出现在多个对象文件中,当独立编译的原文件使用相同的模板并提供了相同的模板参数,每个文件都会有一个实例。为了解决这个开销,可以使用显式实例化。
extern template declaration; //实例化的声明
template declaration;//实例化的定义
编译器遇到external声明,将会在其他位置寻找定义,但在其他位置必须有一个定义。
实例化定义会实例化所有成员,所以类型必须能够引用所有成员函数
16.2模板实参推断
- 在调用模板的时候,一般不会发生参数类型的转换。会发生的转换有两种,非const转换成const,数组或函数名转换成指针。
- 如果函数参数不是模板参数类型,这个参数是可以进行类型转换的
- 使用相同模板参数类型的函数形参类型必须相同,不会进行参数转换
- 当模板实参类型无法推断,例如返回值类型时,必须显式指定。(通过fun
- 显式指定了模板实参类型的,也可以进行类型转换(fun
(15),15转换为double)。
16.2.3尾置返回类型与类型转换
有时候返回值的类型与参数的类型有关,这时候可以用尾置返回类型
templateauto fcn(It beg, It end) -> decltype(*beg) { return *beg; }
由于解引用运算返回的是引用类型,所以返回值是引用类型。
如果要返回的是值,则使用remove_reference(是一个转换模板,定义在type_traits头文件中)。
template//第二个typename表示type成员为类型 auto fcn(It beg, It end) -> typename remove_reference
其他的类型转换模板请参见这里。
16.2.6理解std::move
Std::move将一个对象转变为右值引用对象。
template<class _Ty> inline constexpr typename remove_reference<_Ty>::type&& move(_Ty&& _Arg) noexcept { // forward _Arg as movable return (static_cast::type&&>(_Arg)); }
在调用时
std::string s1("hi!"), s2; s2 = std::move(std::string("bye!")); s2 = std::move(s1);
使用调用
s2 = std::move(std::string("bye!"));
- 推断出模板类型_Ty为string
- remove_reference<_Ty>::type为string
- move返回类型为string&&
使用调用
s2 = std::move(s1);
- 推断出模板类型_Ty为string&
- remove_reference<_Ty>::type为string
- move返回类型为string& &&,折叠后为string&
- move函数参数t实例化为string& &&,会折叠为string&
16.2.7转发
某些函数需要将其一个或多个实参和类型不变地转发给其他函数,包括是否是const以及左值还是右值。
这个模板将一个函数的参数转发到里边的函数。
templatevoid flip1(F f, T1 t1, T2, t2) { f(t2, t1); }
这个模板在值传递的实例中是正确的,但是在如下调用:
function<void(int, int&)> fun = [](int a, int& b) {cout << a << ++b << endl; }; int a = 1, b = 2; flip1(fun, a, b); cout << a << b << endl;
你会发现,函数并没有改变第二个参数的值,没有将引用这个参数类型传入。
修改模板为
templatevoid flip1(F f, T1&& t1, T2&& t2) { f(t1, t2); }
这也会存在一些情况下的错误
function<void(int&&, int&)> fun = [](int &&a, int& b) {cout << a << ++b << endl; }; int a = 1; flip1(fun, 1, a);
1为右值传递到模板flip1中后,作为一个变量的形参,会成为一个左值(变量是左值),左值绑定到fun的第一个右值参数时,会出现错误。
再次修改为
templatevoid flip1(F f, T1&& t1, T2&& t2) { f(std::forward (t1), std::forward (t2)); }
使用forward,将返回类型为T&&的结果,如果出入为值,则返回为右值,传入为左值引用,则引用折叠后返回左值引用。
16.3重载与模板
如下两个模板
templatestd::string debug_rep(const T& t) { std::ostringstream ret; ret << t; return ret.str(); } template std::string debug_rep(T* p) { std::ostringstream ret; ret << "pointer: " << p << " " << (p ? debug_rep(*p) : "null pointer"); return ret.str(); }
如果有调用
int a = 1; std::cout << debug_rep(a) << std::endl;
只有第一个模板时可行的,则选择第一个实例化
如果有调用
int a = 1; std::cout << debug_rep(&a) << std::endl;
则有
debug_rep(const int*&) debug_rep(int*)
这两个版本的实例化,由于第一个需要有非const转换到const,所以选择了第二个版本。
如果有调用
const int* a = &b; std::cout << debug_rep(a) << std::endl;
则上述两个版本都是精确的,然而debug_rep(T* p)对于这个调用来讲,是更特例的版本,只针对于指针,所以选择最特例话的版本。(从另一个角度讲,(const T& t)适用任何类型,这样debug_rep(T* p)永远不会被使用,这条规则才能使其被使用)
另外,非模板函数会优先匹配
16.4可变参数模板
一个可变参数模板(variadic template)中可变数目的参数被称为参数包(parameter packet),分为两种参数包:模板参数包(template parameter packet)、函数参数包(function parameter)。
// Args is a template parameter pack; rest is a function parameter pack // Args represents zero or more template type parameters // rest represents zero or more function parameters templatevoid foo(const T &t, const Args& ... rest) { cout << sizeof...(Args) << endl; // number of type parameters cout << sizeof...(args) << endl; // number of function parameters }
用typename…表示零或多个类型的列表,一个类型名后边跟省略号,表示非类型参数的列表。如果一个函数参数的类型是模板参数包,则此参数是一个函数参数包,可以用sizeof…求出参数的个数。
16.4.1例子,打印所有参数
第一个模板在第二个模板递归调用的最后一次中,时最为匹配的,调用时终止了第二个模板的递归。
// function to end the recursion and print the last element // this function must be declared before the variadic version of print is defined templateostream &print(ostream &os, const T &t) { return os << t; // no separator after the last element in the pack } // this version of print will be called for all but the last element in the pack template ostream &print(ostream &os, const T &t, const Args&... rest) { os << t << ", "; // print the first argument return print(os, rest...); // recursive call; print the other arguments }
16.4.2包扩展
templateostream &print(ostream &os, const T &t, const Args&... rest) //扩展Args,生成参数列表 { os << t << ", "; return print(os, rest...); //扩展实参,形成实参列表 }
在扩展实参的时候,还可以这样用
print(os, debug_rep(rest)...);
可以将扩展出来的每一个参数,执行函数调用
return print(os, debug_rep(p1), debug_rep(p2), debug_rep(p3));
16.4.3转发参数包
// fun haszero or more parameters each of which is // an rvalue reference to a template parameter type template
16.5模板特例化
// firstversion; can compare any two types templateint compare(const T&, const T&); // second version to handle string literals template int compare(const char(&)[N], const char(&)[M]);
定义的这两个模板,可以比较任意对象类型。但是,如果传入的是字符串类型的指针(char*)时,回到第一个模板中调用,然而比较了参数指针的大小。
为了能够处理字符指针的类型,可以定义一个特列
// specialversion of compare to handle pointers to character arrays template <> int compare(const char* const &p1, const char* const &p2) { return strcmp(p1, p2); }
当提供一个特例化,其类型必须与之前的模板参数中对应的类型匹配。如上是为了特例化第一个模板template
需要注意的是,特例化本质是实例化一个模板,而非重载。因此特例化不影响函数匹配。这与将其定义为非模板函数是有区别的。
加入定义了非模板函数,这样在传入字符常量的时候,例如
compare("hi", "mom");
会匹配到我们定义的非模板函数,而这个实际上我们希望匹配到int compare(const char(&)[N], const char(&)[M]);
注意,特例化必须声明在作用域中,故声明在一个头文件中。
类模板的特例化
如果自定义类需要使用无序容器,必须定义自己的hasher版本,或者特例化hash
- 一个重载调用运算符,接收一个容器关键字类型的对象,返回一个size_t
- 两个类型成员,result_type和argument_type,分别为调用运算符的返回类型和参数类型
- 默认构造函数和拷贝赋值运算符(可以隐式定义)。
注意,特例化需要与被特例化的模板在同一个作用域,所以使用namespace参数。
示例:对Sales_data
// openthe std namespace so we can specialize std::hash namespace std { template <> // we‘re defining a specialization with struct hash// the template parameter of Sales_data { // the type used to hash an unordered container must define these types typedef size_t result_type; typedef Sales_data argument_type; // by default, this type needs == size_t operator()(const Sales_data& s) const; // our class uses synthesized copy control and default constructor }; size_t hash ::operator()(const Sales_data& s) const { //下边是hash函数的算法,使用了string、uint、double的hash算法 return hash<string>()(s.bookNo) ^ hash ()(s.units_sold) ^ hash<double>()(s.revenue); } }
注意,有时候会使用私有成员进行hash,所以声明为友元
// needed for the friend declaration templateclass std::hash; class Sales_data { friend class std::hash ; // other members as before };
类模板的部分特例化
我们可以部分特例化类模板,不能部分特例化函数模板
template <class T> struct remove_reference { typedef T type; }; // partialspecializations that will be used for lvalue and rvalue references template <class T> struct remove_reference
特例化模板的成员
templatestruct Foo { Foo(constT &t = T()) : mem(t) { } void Bar() { } T mem; // other members of Foo }; template<> // we‘re specializing a template void Foo<int>::Bar() // we‘re specializing the Bar member of Foo { // do whatever specialized processing that applies to ints }
当使用int类型的模板时,会使用这个特例化的Bar()函数成员。
以上是关于2022-04-25的主要内容,如果未能解决你的问题,请参考以下文章
2022-04-25:给定一个整数数组,返回所有数对之间的第 k 个最小距离。一对 (A, B) 的距离被定义为 A 和 B 之间的绝对差值。 输入: nums = [1,3,1] k = 1 输出:
控制台进度显示就地更新:Update Progress in place
控制台进度显示就地更新:Update Progress in place