Skip to content

Commit

Permalink
driver: ISDB2056N で衛星放送の受信結果がエラーパケットだらけになる問題が修正されそうな変更を試す
Browse files Browse the repository at this point in the history
ISDB2056 -> ISDB2056N では TS 復調 IC が TC90522XBG に変更された影響か I2C バスや物理的な接続バスが変更されているようで、恐らく ISDB-S 側の TC90522XBG 設定の is_secondary を true にすれば行けるのではと予想
  • Loading branch information
tsukumijima committed Jun 4, 2024
1 parent cca59d4 commit be06a00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion driver/isdb2056_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ static int isdb2056_device_load_config(struct isdb2056_device *isdb2056,
chrdev2056->tc90522_s.dev = dev;
chrdev2056->tc90522_s.i2c = &it930x->i2c_master[2];
chrdev2056->tc90522_s.i2c_addr = 0x13;
chrdev2056->tc90522_s.is_secondary = false;
chrdev2056->tc90522_s.is_secondary = true;

chrdev2056->r850.dev = dev;
chrdev2056->r850.i2c = &chrdev2056->tc90522_t.i2c_master;
Expand Down

0 comments on commit be06a00

Please sign in to comment.