chatgpt 語法入門 prompts and codewords
在最新的chatgpt里,我們已經(jīng)有很多新的prompt(提示詞)可以trigger ai并生成新的回答樣式。
prompt:
when adding es8038 as the default codec for a cortex-a72 arm cpu in a linux system,what process must be done to enable the driver,the kernel and the software work well,give the detailed process in a command line

2,
prompt:
what is the definitions for "dts dtsi dtbo dtb",and list them in a table.

3,
prompt:
take raspberry pi 4b for example ,and rewrite the process
4,
when does the cpu process "board.dtb" in a full booting process,before the kernel boot,or before the rootfs image booting ,or before the u-boot booting?
list them in a table

4,list the process into a flowchart.

5,list the process into a diagram.


總結:prompt支持markdown語法,并且支持基本的flow chart相關術語,甚至是狀態(tài)機,線性流程,可以復制到對應的項目管理軟件打開,直接生成流程圖等。
那么,chatgpt并不能完全替代你對未知項目功能的學習,比如,用藍牙舉例,如果你不知道具體的command名字,你就不能夠讓chatgpt給你一個精確的流程回復。
如果你給了準確的prompts,就能得到
in an actual test,i find out that the step"trust <MAC address>" should be done before " pair <MAC address> ", if not ,it will not pair successfully, please now rewrite the step-by-step proces with my words
Sure, here are the updated step-by-step instructions based on your findings:
Open a terminal window on your computer.
Type
bluetoothctl
and press Enter to start the Bluetooth control utility.Type
power on
and press Enter to turn on Bluetooth on your computer (if it's not already on).Type
agent on
and press Enter to enable the Bluetooth agent.Type
scan on
and press Enter to start scanning for nearby Bluetooth devices.Wait for the Bluetooth device you want to pair with to appear in the list of discovered devices. Note down its MAC address (e.g., "12:34:56:78:90:AB").
Type
scan off
and press Enter to stop scanning for Bluetooth devices.Type
trust <MAC address>
(replacing<MAC address>
with the MAC address of the device you want to pair with) and press Enter to mark the device as trusted.Type
pair <MAC address>
(replacing<MAC address>
with the MAC address of the device you want to pair with) and press Enter.Follow the on-screen prompts to complete the pairing process. You may be asked to enter a PIN or confirm a passcode on both the computer and the Bluetooth device to establish a secure connection.
Finally, type
exit
and press Enter to exit thebluetoothctl
utility.